mirror of
https://github.com/DrBeef/JKXR.git
synced 2024-11-25 05:21:00 +00:00
Update to API level 29
This commit is contained in:
parent
0674c3080f
commit
d682771bbc
2 changed files with 9 additions and 9 deletions
|
@ -1,8 +1,8 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
package="com.drbeef.jkxr"
|
package="com.drbeef.jkxr"
|
||||||
android:versionCode="54"
|
android:versionCode="56"
|
||||||
android:versionName="1.1.2" android:installLocation="auto" >
|
android:versionName="1.1.4" android:installLocation="auto" >
|
||||||
|
|
||||||
<!-- Tell the system this app requires OpenGL ES 3.1. -->
|
<!-- Tell the system this app requires OpenGL ES 3.1. -->
|
||||||
<uses-feature android:glEsVersion="0x00030002" android:required="true"/>
|
<uses-feature android:glEsVersion="0x00030002" android:required="true"/>
|
||||||
|
@ -21,7 +21,7 @@
|
||||||
android:icon="@drawable/ic_jkxr"
|
android:icon="@drawable/ic_jkxr"
|
||||||
android:label="@string/jkxr"
|
android:label="@string/jkxr"
|
||||||
android:extractNativeLibs="true"
|
android:extractNativeLibs="true"
|
||||||
>
|
android:requestLegacyExternalStorage="true" >
|
||||||
|
|
||||||
<meta-data android:name="com.samsung.android.vr.application.mode" android:value="vr_only"/>
|
<meta-data android:name="com.samsung.android.vr.application.mode" android:value="vr_only"/>
|
||||||
|
|
||||||
|
|
|
@ -24,8 +24,8 @@ android {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
minSdkVersion 26
|
minSdkVersion 29
|
||||||
targetSdkVersion 26
|
targetSdkVersion 29
|
||||||
}
|
}
|
||||||
|
|
||||||
sourceSets {
|
sourceSets {
|
||||||
|
@ -46,13 +46,13 @@ android {
|
||||||
sourceCompatibility = '1.8'
|
sourceCompatibility = '1.8'
|
||||||
targetCompatibility = '1.8'
|
targetCompatibility = '1.8'
|
||||||
}
|
}
|
||||||
compileSdkVersion = 26
|
compileSdkVersion = 29
|
||||||
buildToolsVersion = '29.0.1'
|
buildToolsVersion = '29.0.3'
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation "com.android.support:support-compat:26.1.0"
|
implementation "com.android.support:support-compat:28.0.0"
|
||||||
implementation "com.android.support:support-core-utils:26.1.0"
|
implementation "com.android.support:support-core-utils:28.0.0"
|
||||||
implementation fileTree(dir: 'libs', include: ['*.jar', '*.aar'])
|
implementation fileTree(dir: 'libs', include: ['*.jar', '*.aar'])
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue