-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathbuild.gradle
67 lines (55 loc) · 2 KB
/
build.gradle
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
buildscript {
repositories {
mavenLocal()
mavenCentral()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.2.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.10"
}
}
apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
def getExtOrIntegerDefault(name) {
return rootProject.ext.has(name) ? rootProject.ext.get(name) : (project.properties['RNTP_' + name]).toInteger()
}
android {
compileSdkVersion getExtOrIntegerDefault('compileSdkVersion')
namespace 'com.doublesymmetry.trackplayer'
def agpVersion = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION
defaultConfig {
minSdkVersion getExtOrIntegerDefault('minSdkVersion') // RN's minimum version
targetSdkVersion getExtOrIntegerDefault('targetSdkVersion')
versionCode 300
versionName '3.0'
consumerProguardFiles 'proguard-rules.txt'
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
repositories {
mavenLocal()
maven {
// As RN is not updated in jcenter anymore, we'll have to grab it from npm
// Make sure you have installed the react-native npm package before compiling
url '../node_modules/react-native/android'
}
mavenCentral()
google()
}
dependencies {
implementation 'com.github.lovegaoshi:KotlinAudio:v2.0.0-aa23'
// used when building against local maven
// implementation "com.github.doublesymmetry:kotlin-audio:2.1.0"
//noinspection GradleDynamicVersion
implementation "com.facebook.react:react-native:+"
// Make sure we're using androidx
implementation "androidx.core:core-ktx:1.9.0"
implementation "androidx.localbroadcastmanager:localbroadcastmanager:1.1.0"
implementation "androidx.lifecycle:lifecycle-process:2.5.1"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.3"
implementation 'androidx.media:media:1.6.0'
}