-
Notifications
You must be signed in to change notification settings - Fork 145
Expand file tree
/
Copy pathbuild.gradle
More file actions
53 lines (45 loc) · 1.17 KB
/
build.gradle
File metadata and controls
53 lines (45 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
buildscript {
repositories {
google()
jcenter()
mavenCentral()
maven { url 'http://nexus.skillz.com/content/groups/public' }
}
dependencies {
classpath 'com.android.tools.build:gradle:3.6.4'
classpath 'de.undercouch:gradle-download-task:3.4.3'
classpath 'com.google.gms:google-services:4.3.0'
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
}
}
apply plugin: 'com.android.library'
android {
compileSdkVersion 29
buildToolsVersion '29.0.0'
defaultConfig {
minSdkVersion 19
targetSdkVersion 29
versionCode 1
versionName VERSION_NAME
}
lintOptions {
abortOnError false
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
repositories {
google()
mavenCentral()
maven {
url 'http://nexus.skillz.com/content/groups/public'
}
jcenter()
flatDir { dirs 'libs', '../../node_modules' }
}
dependencies {
implementation 'com.facebook.react:react-native:0.65.1' // Skillz' react-native-v8 aar
}
apply from: 'release.gradle'