Skip to content

Commit f55d61c

Browse files
committed
Updated build versions and target SDK
1 parent 3ecd34a commit f55d61c

4 files changed

Lines changed: 16 additions & 12 deletions

File tree

build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@
33
buildscript {
44
repositories {
55
jcenter()
6+
google()
67
}
78
dependencies {
8-
classpath 'com.android.tools.build:gradle:3.0.1'
9+
classpath 'com.android.tools.build:gradle:3.4.1'
910

1011
// NOTE: Do not place your application dependencies here; they belong
1112
// in the individual module build.gradle files
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Wed Mar 21 21:52:45 EDT 2018
1+
#Tue May 28 19:24:17 EDT 2019
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-5.1.1-all.zip

wear/build.gradle

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

33
android {
4-
compileSdkVersion 27
5-
buildToolsVersion "27.0.3"
4+
compileSdkVersion 28
5+
buildToolsVersion "28.0.3"
66
defaultConfig {
77
applicationId "io.nxt3.ioclassic"
88
minSdkVersion 25
9-
targetSdkVersion 27
10-
versionCode 31
11-
versionName "2.9"
9+
targetSdkVersion 28
10+
versionCode 32
11+
versionName "2.10"
1212
}
1313

1414
buildTypes {
@@ -33,10 +33,10 @@ android {
3333

3434
dependencies {
3535
compile fileTree(dir: 'libs', include: ['*.jar'])
36-
provided 'com.google.android.wearable:wearable:2.2.0'
37-
compile 'com.google.android.support:wearable:2.2.0'
36+
provided 'com.google.android.wearable:wearable:2.4.0'
37+
compile 'com.google.android.support:wearable:2.4.0'
3838

39-
compile 'com.google.android.gms:play-services-wearable:12.0.0'
39+
compile 'com.google.android.gms:play-services-wearable:16.0.1'
4040
compile 'com.anjlab.android.iab.v3:library:1.0.44'
4141
}
4242

wear/src/main/AndroidManifest.xml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,17 @@
1818

1919
<application
2020
android:allowBackup="true"
21+
android:fullBackupContent="true"
2122
android:icon="@mipmap/ic_launcher"
2223
android:label="@string/app_name"
2324
android:supportsRtl="true"
2425
android:taskAffinity=""
2526
android:theme="@android:style/Theme.DeviceDefault">
27+
2628
<meta-data
2729
android:name="com.google.android.wearable.standalone"
2830
android:value="true" />
31+
2932
<meta-data
3033
android:name="com.google.android.gms.version"
3134
android:value="@integer/google_play_services_version" />
@@ -38,6 +41,7 @@
3841
android:name=".IOClassicWatchFaceService"
3942
android:label="@string/app_name"
4043
android:permission="android.permission.BIND_WALLPAPER">
44+
4145
<meta-data
4246
android:name="android.service.wallpaper"
4347
android:resource="@xml/watch_face" />
@@ -71,5 +75,4 @@
7175
</intent-filter>
7276
</activity>
7377
</application>
74-
7578
</manifest>

0 commit comments

Comments
 (0)