Skip to content

Commit 15d42cf

Browse files
committed
removed android:debuggable property from manifest templates
1 parent 88c0908 commit 15d42cf

File tree

4 files changed

+3
-7
lines changed

4 files changed

+3
-7
lines changed

templates/CardboardManifest.xml.tmpl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
<uses-feature android:glEsVersion="0x00020000" android:required="true" />
1313
<application android:label=""
1414
android:icon="@drawable/icon"
15-
android:debuggable="true"
1615
android:theme="@style/VrActivityTheme">
1716
<activity android:name=".MainActivity"
1817
android:screenOrientation="landscape"

templates/FragmentManifest.xml.tmpl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@
55
android:versionName="1.0">
66
<uses-sdk android:minSdkVersion="@@min_sdk@@" />
77
<application android:label=""
8-
android:icon="@drawable/icon"
9-
android:debuggable="true">
8+
android:icon="@drawable/icon">
109
<activity android:name=".MainActivity"
1110
android:theme="@style/Theme.AppCompat.Light.NoActionBar.FullScreen">
1211
<intent-filter>

templates/WallpaperManifest.xml.tmpl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66
<uses-sdk android:minSdkVersion="@@min_sdk@@" />
77
<uses-feature android:name="android.software.live_wallpaper" />
88
<application android:label=""
9-
android:icon="@drawable/icon"
10-
android:debuggable="true">
9+
android:icon="@drawable/icon">
1110
<service android:name=".MainService"
1211
android:label=""
1312
android:permission="android.permission.BIND_WALLPAPER">

templates/WatchFaceManifest.xml.tmpl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@
88
<uses-permission android:name="android.permission.WAKE_LOCK" />
99
<application android:label=""
1010
android:icon="@drawable/icon"
11-
android:supportsRtl="true"
12-
android:debuggable="true">
11+
android:supportsRtl="true">
1312
<uses-library android:name="com.google.android.wearable" android:required="false"/>
1413
<service android:name=".MainService"
1514
android:label=""

0 commit comments

Comments
 (0)