Skip to content

Commit fdcf240

Browse files
committed
update gradle version
1 parent 8f21a54 commit fdcf240

File tree

4 files changed

+26
-25
lines changed

4 files changed

+26
-25
lines changed

DeviceIdentifiersWrapper/build.gradle

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
1-
apply plugin: 'com.android.library'
2-
3-
ext {
4-
PUBLISH_GROUP_ID = 'com.zebra.deviceidentifierswrapper'
5-
PUBLISH_ARTIFACT_ID = 'deviceidentifierswrapper'
6-
PUBLISH_VERSION = '0.2'
1+
plugins {
2+
id 'com.android.library'
73
}
84

95
android {

build.gradle

Lines changed: 3 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,7 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
2-
buildscript {
3-
repositories {
4-
google()
5-
jcenter()
6-
}
7-
dependencies {
8-
classpath "com.android.tools.build:gradle:4.0.0"
9-
10-
// NOTE: Do not place your application dependencies here; they belong
11-
// in the individual module build.gradle files
12-
}
13-
}
14-
15-
allprojects {
16-
repositories {
17-
google()
18-
jcenter()
19-
}
2+
plugins {
3+
id 'com.android.application' version '7.2.2' apply false
4+
id 'com.android.library' version '7.2.2' apply false
205
}
216

227
task clean(type: Delete) {

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ 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-6.1.1-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-all.zip

settings.gradle

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,22 @@
1+
pluginManagement {
2+
repositories {
3+
gradlePluginPortal()
4+
google()
5+
mavenCentral()
6+
jcenter()
7+
maven { url 'https://jitpack.io' }
8+
}
9+
}
10+
dependencyResolutionManagement {
11+
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
12+
repositories {
13+
google()
14+
mavenCentral()
15+
jcenter()
16+
maven { url 'https://jitpack.io' }
17+
}
18+
}
19+
20+
121
include ':DeviceIdentifiersWrapper'
222
rootProject.name = "DeviceIdentifiersWrapper"

0 commit comments

Comments
 (0)