Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
Fix namespace issue + bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
jpeddicord committed May 1, 2020
1 parent aa0b81a commit cd2719a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Build
build/
gen/
release/
.gradle/
local.properties

Expand Down
5 changes: 3 additions & 2 deletions AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="net.codechunk.speedofsound"
android:versionCode="20"
android:versionName="1.2.2"
android:versionCode="21"
android:versionName="1.2.3"
tools:ignore="ExportedReceiver">

<uses-feature
Expand All @@ -17,6 +17,7 @@
<uses-permission android:name="android.permission.ACCESS_BACKGROUND_LOCATION" />
<uses-permission android:name="android.permission.BLUETOOTH" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />

<application
android:allowBackup="true"
Expand Down
2 changes: 1 addition & 1 deletion src/net/codechunk/speedofsound/util/SliderPreference.kt
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ open class SliderPreference(context: Context, attrs: AttributeSet) : DialogPrefe
/**
* Our custom namespace for this preference.
*/
protected const val LOCAL_NS = "http://schemas.android.com/apk/res/net.codechunk.speedofsound"
protected const val LOCAL_NS = "http://schemas.android.com/apk/res-auto"
}

}

0 comments on commit cd2719a

Please sign in to comment.