[#262] Target Android SDK 31

Also resolve setting the main activity to exported, which is a new requirement for the new API level
This commit is contained in:
Carter Jernigan 2021-09-01 15:00:25 -04:00
parent 0b6a82b293
commit b80146e3ec
2 changed files with 4 additions and 3 deletions

View File

@ -14,7 +14,8 @@
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:theme="@style/AppTheme.NoActionBar">
android:theme="@style/AppTheme.NoActionBar"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

View File

@ -43,5 +43,5 @@ POM_DEVELOPER_URL=https://github.com/gmale/
# Note: When updating the NDK version here, be sure to update the version on the CI server as well
ndkVersion=21.1.6352462
minSdkVersion=16
targetSdkVersion=29
compileSdkVersion=29
targetSdkVersion=31
compileSdkVersion=31