Skip to content

Commit 27dbab5

Browse files
committed
removed minSdkVersion and targetSdkVersion from manifest files
1 parent 477f134 commit 27dbab5

File tree

12 files changed

+5
-15
lines changed

12 files changed

+5
-15
lines changed

studio/apps/fast2d/build.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,10 @@ apply plugin: 'com.android.application'
22

33
android {
44
compileSdkVersion 27
5-
buildToolsVersion '27.0.3'
65
defaultConfig {
76
applicationId "processing.tests.fast2d"
87
minSdkVersion 17
9-
targetSdkVersion 21
8+
targetSdkVersion 26
109
versionCode 1
1110
versionName "1.0"
1211
}

studio/apps/fast2d/src/main/AndroidManifest.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="1" android:versionName="1.0" package="fast2d">
3-
<uses-sdk android:minSdkVersion="17" android:targetSdkVersion="26"/>
43
<application
54
android:allowBackup="true"
65
android:icon="@mipmap/ic_launcher"

studio/apps/simple/build.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,10 @@ apply plugin: 'com.android.application'
22

33
android {
44
compileSdkVersion 27
5-
buildToolsVersion '27.0.3'
65
defaultConfig {
76
applicationId "processing.tests.simple"
87
minSdkVersion 17
9-
targetSdkVersion 21
8+
targetSdkVersion 26
109
versionCode 1
1110
versionName "1.0"
1211
}

studio/apps/simple/src/main/AndroidManifest.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="1" android:versionName="1.0" package="simple">
3-
<uses-sdk android:minSdkVersion="17" android:targetSdkVersion="26"/>
43
<application
54
android:allowBackup="true"
65
android:icon="@mipmap/ic_launcher"

studio/apps/vrcube/build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ apply plugin: 'com.android.application'
22

33
android {
44
compileSdkVersion 27
5-
buildToolsVersion '27.0.3'
65
defaultConfig {
76
applicationId "processing.tests.vrcube"
87
minSdkVersion 19

studio/apps/vrcube/src/main/AndroidManifest.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="1" android:versionName="1.0" package="vrcube">
3-
<uses-sdk android:minSdkVersion="19" android:targetSdkVersion="26"/>
43
<uses-permission android:name="android.permission.VIBRATE"/>
54
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
65
<uses-feature android:name="android.hardware.sensor.accelerometer" android:required="true"/>

studio/apps/wallpaper/build.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,10 @@ apply plugin: 'com.android.application'
22

33
android {
44
compileSdkVersion 27
5-
buildToolsVersion '27.0.3'
65
defaultConfig {
76
applicationId "processing.tests.wallpaper"
87
minSdkVersion 17
9-
targetSdkVersion 21
8+
targetSdkVersion 26
109
versionCode 1
1110
versionName "1.0"
1211
}

studio/apps/wallpaper/src/main/AndroidManifest.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="1" android:versionName="1.0" package="wallpaper">
3-
<uses-sdk android:minSdkVersion="17" android:targetSdkVersion="26"/>
43
<uses-feature android:name="android.software.live_wallpaper"/>
54
<application android:icon="@mipmap/ic_launcher" android:label="wallpaper">
65
<service android:label="wallpaper" android:name=".MainService" android:permission="android.permission.BIND_WALLPAPER">

studio/apps/watchface/src/main/AndroidManifest.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="1" android:versionName="1.0" package="watchface">
3-
<uses-sdk android:minSdkVersion="25" android:targetSdkVersion="26"/>
43
<uses-feature android:name="android.hardware.type.watch"/>
54
<uses-permission android:name="android.permission.WAKE_LOCK"/>
65
<application android:icon="@mipmap/ic_launcher" android:label="watchface" android:supportsRtl="true" android:theme="@android:style/Theme.DeviceDefault">

studio/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ buildscript {
66
google()
77
}
88
dependencies {
9-
classpath 'com.android.tools.build:gradle:3.1.4'
9+
classpath 'com.android.tools.build:gradle:3.2.1'
1010

1111
// NOTE: Do not place your application dependencies here; they belong
1212
// in the individual module build.gradle files

0 commit comments

Comments
 (0)