File tree Expand file tree Collapse file tree 4 files changed +9
-10
lines changed Expand file tree Collapse file tree 4 files changed +9
-10
lines changed Original file line number Diff line number Diff line change 1
1
apply plugin : ' com.android.library'
2
2
3
3
android {
4
- compileSdkVersion 27
4
+ compileSdkVersion 28
5
5
6
6
defaultConfig {
7
7
minSdkVersion 21
8
- targetSdkVersion 27
8
+ targetSdkVersion 28
9
9
versionCode 1
10
10
versionName " 1.0"
11
11
}
@@ -24,8 +24,8 @@ apply plugin: 'maven'
24
24
task createAAR (type : Upload ) {
25
25
def distDir = " ${ rootDir} /../dist"
26
26
27
- def revision = project. findProperty(" revision" ). replaceAll(" \\ s" ," " )
28
- def i18n = project. findProperty(" i18n" )
27
+ def revision = project. findProperty(" revision" ) ?: " " . replaceAll(" \\ s" , " " )
28
+ def i18n = project. findProperty(" i18n" ) ?: " "
29
29
30
30
doFirst {
31
31
if (! revision) throw new RuntimeException (" expecting --project-prop revision=??? but was empty" )
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ buildscript {
8
8
mavenLocal()
9
9
}
10
10
dependencies {
11
- classpath ' com.android.tools.build:gradle:3.1.3 '
11
+ classpath ' com.android.tools.build:gradle:3.2.0 '
12
12
13
13
// NOTE: Do not place your application dependencies here; they belong
14
14
// in the individual module build.gradle files
Original file line number Diff line number Diff line change @@ -3,13 +3,12 @@ apply plugin: "com.android.application"
3
3
apply from : " $rootDir /../node_modules/react-native/react.gradle"
4
4
5
5
android {
6
- compileSdkVersion 27
7
- buildToolsVersion " 27.0.3"
6
+ compileSdkVersion 28
8
7
9
8
defaultConfig {
10
9
applicationId " com.javascriptcore.profiler"
11
10
minSdkVersion 21
12
- targetSdkVersion 27
11
+ targetSdkVersion 28
13
12
versionCode 1
14
13
versionName " 1.0"
15
14
ndk {
@@ -35,6 +34,6 @@ android {
35
34
36
35
dependencies {
37
36
implementation fileTree(dir : " libs" , include : [" *.jar" ])
38
- implementation " com.android.support:appcompat-v7:27.1.1 "
37
+ implementation " com.android.support:appcompat-v7:28.0.0 "
39
38
implementation " com.facebook.react:react-native:+" // From node_modules
40
39
}
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ buildscript {
35
35
mavenLocal()
36
36
}
37
37
dependencies {
38
- classpath ' com.android.tools.build:gradle:3.1.3 '
38
+ classpath ' com.android.tools.build:gradle:3.2.0 '
39
39
}
40
40
}
41
41
You can’t perform that action at this time.
0 commit comments