forked from maxmpz/powerampapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
38 lines (33 loc) · 870 Bytes
/
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
apply plugin: 'com.android.application'
android {
compileSdk 33
buildToolsVersion '34.0.0'
defaultConfig {
applicationId "com.maxmpz.poweramp.apiexample"
minSdk 21
//noinspection OldTargetApi
targetSdk 31
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
}
namespace 'com.maxmpz.poweramp.apiexample'
dependenciesInfo {
includeInApk true
includeInBundle true
}
ndkVersion ndkVersion
}
dependencies {
coreLibraryDesugaring("com.android.tools:desugar_jdk_libs:2.0.0")
implementation 'androidx.appcompat:appcompat:1.5.1'
implementation project(':poweramp_api_lib')
}