diff options
author | 2018-12-12 01:38:28 +0100 | |
---|---|---|
committer | 2018-12-11 19:38:27 -0500 | |
commit | a45221458dfba557ae32c0073750a06deea3f45e (patch) | |
tree | 0c7edda0a7fc0ca38021374801f0e5b2e074a180 /android-project/app | |
parent | ff08c8cd4eb7004bac71652421b4aea987f5c468 (diff) |
Android compile fix (#4395)
* Fix compile for Android, set API to 24
* Update Android Studio project to API 24
* Fixed project file to latest Android Studio
* fix build with gradle alone
Diffstat (limited to 'android-project/app')
-rw-r--r-- | android-project/app/build.gradle | 8 | ||||
-rw-r--r-- | android-project/app/src/main/AndroidManifest.xml | 3 |
2 files changed, 3 insertions, 8 deletions
diff --git a/android-project/app/build.gradle b/android-project/app/build.gradle index 35377908b88..3e632b38b67 100644 --- a/android-project/app/build.gradle +++ b/android-project/app/build.gradle @@ -1,14 +1,12 @@ apply plugin: 'com.android.application' android { - compileSdkVersion 21 - buildToolsVersion "21.1.2" + compileSdkVersion 24 + buildToolsVersion '28.0.3' defaultConfig { applicationId "org.mamedev.mame" - minSdkVersion 21 - targetSdkVersion 21 - + minSdkVersion 24 ndk { moduleName 'main' } diff --git a/android-project/app/src/main/AndroidManifest.xml b/android-project/app/src/main/AndroidManifest.xml index b811380f2bd..88d23efaeb1 100644 --- a/android-project/app/src/main/AndroidManifest.xml +++ b/android-project/app/src/main/AndroidManifest.xml @@ -8,9 +8,6 @@ android:versionName="0.204" android:installLocation="auto"> - <!-- Android 5.0 --> - <uses-sdk android:minSdkVersion="21" android:targetSdkVersion="21" /> - <!-- OpenGL ES 2.0 --> <uses-feature android:glEsVersion="0x00020000" /> |