Skip to content

Commit

Permalink
Added touchscreen not required tag to android manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
mkrupczak3 committed May 8, 2019
1 parent a8ae273 commit 466785c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
4 changes: 2 additions & 2 deletions doom/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ android {
defaultConfig {
minSdkVersion 21
targetSdkVersion 26
versionCode 10
versionName "0.3.0"
versionCode 11
versionName "0.3.1"
}
sourceSets.main {
jniLibs.srcDir 'src/main/libs'
Expand Down
3 changes: 3 additions & 0 deletions doom/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="com.android.vending.CHECK_LICENSE" />

<uses-feature android:name="android.hardware.touchscreen" android:required="false" />


<application
android:label="@string/app_name"
android:icon="@drawable/launch"
Expand Down
7 changes: 5 additions & 2 deletions doom/src/main/jni/SDL/android-project/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.libsdl.app"
android:versionCode="1"
package="org.libsdl.app">

<uses-feature android:name="android.hardware.touchscreen" android:required="false" />

android:versionCode="1"
android:versionName="1.0">
<application android:label="@string/app_name" android:icon="@drawable/icon">
<activity android:name="SDLActivity"
Expand Down

0 comments on commit 466785c

Please sign in to comment.