SDL: fixed NDK build warning

This commit is contained in:
Sergii Pylypenko
2018-10-10 23:17:26 +03:00
parent 37ad3763ab
commit de301f6c59
2 changed files with 4 additions and 1 deletions

View File

@@ -59,6 +59,9 @@
/>
</application>
<!-- Must match version numbers in project/app/build-template.gradle -->
<uses-sdk android:minSdkVersion="16" android:targetSdkVersion="28" />
<!-- ==INTERNET== --> <uses-permission android:name="android.permission.INTERNET" />
<!-- ==EXTERNAL_STORAGE== --> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<!-- ==EXTERNAL_STORAGE== --> <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />

View File

@@ -6,7 +6,7 @@ android {
defaultConfig {
applicationId "net.olofson.ballfield"
minSdkVersion 16 // Android-15 and older is not supported by NDK r18 anymore
minSdkVersion 16 // Must match version numbers in project/AndroidManifestTemplate.xml
targetSdkVersion 28
}