Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
hauke96 committed Apr 3, 2022
2 parents 51b94ba + e50b323 commit d14b9f7
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ android {
applicationId "de.hauke_stieler.geonotes"
minSdkVersion 16
targetSdkVersion 32
versionCode 1004004
versionName "1.4.4"
versionCode 1004005
versionName "1.4.5"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
5 changes: 4 additions & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
android:required="false" />

<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
Expand All @@ -24,7 +25,9 @@
<activity
android:name=".settings.SettingsActivity"
android:label="@string/title_activity_settings" />
<activity android:name=".MainActivity">
<activity
android:name=".MainActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

Expand Down
4 changes: 4 additions & 0 deletions metadata/en-US/changelogs/1004005.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
1.4.5:

Big fixes:
* Fix problem installing GeoNotes on SDK 31 or newer.

0 comments on commit d14b9f7

Please sign in to comment.