1
0
mirror of https://github.com/blupi-games/planetblupi-dev synced 2024-12-30 13:55:36 +01:00

Clean some project files

This commit is contained in:
Mathieu Schroeter 2018-06-10 15:26:09 +02:00
parent 7b506936d8
commit 44379ac6b8
2 changed files with 2 additions and 9 deletions

View File

@ -1,18 +1,17 @@
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
compileSdkVersion 27
buildToolsVersion '27.0.3'
defaultConfig {
applicationId "org.libsdl.app"
minSdkVersion 19
targetSdkVersion 23
targetSdkVersion 27
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
externalNativeBuild {
cmake {
//cppFlags "-std=c++11 -frtti -fexceptions"
arguments "-DANDROID=TRUE", "-DANDROID_STL=c++_static"
}
}

View File

@ -1,16 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Replace org.libsdl.app with the identifier of your game below, e.g.
com.gamemaker.game
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.libsdl.app"
android:versionCode="1"
android:versionName="1.0"
android:installLocation="auto">
<!-- Android 2.3.3 -->
<uses-sdk android:minSdkVersion="10" android:targetSdkVersion="12" />
<!-- OpenGL ES 2.0 -->
<uses-feature android:glEsVersion="0x00020000" />