Skip to content
This repository was archived by the owner on May 22, 2021. It is now read-only.

Commit 8d1354f

Browse files
Fix lint error
Change to jcenter for dependencies
1 parent 45fd5dc commit 8d1354f

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

AppRaterDemo/build.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ android {
1111
versionCode Integer.parseInt(project.VERSION_CODE)
1212
}
1313

14+
lintOptions {
15+
disable 'MissingTranslation'
16+
}
17+
1418
signingConfigs {
1519
release
1620
}

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22
buildscript {
33
repositories {
4-
mavenCentral()
4+
jcenter()
55
}
66
dependencies {
77
classpath 'com.android.tools.build:gradle:2.3.1'
@@ -22,6 +22,6 @@ allprojects {
2222
group = GROUP
2323

2424
repositories {
25-
mavenCentral()
25+
jcenter()
2626
}
2727
}

0 commit comments

Comments
 (0)