-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathbuild.gradle
41 lines (33 loc) · 887 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
39
40
41
plugins {
id 'com.android.library'
id 'org.jetbrains.kotlin.android'
}
android {
namespace 'com.hypersoft.billing'
compileSdk 34
defaultConfig {
minSdk 23
targetSdk 34
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = '17'
}
}
dependencies {
implementation 'androidx.core:core-ktx:1.13.0'
implementation 'androidx.appcompat:appcompat:1.6.1'
// Google Play Billing
implementation "com.android.billingclient:billing-ktx:7.1.1"
// LiveData
implementation "androidx.lifecycle:lifecycle-livedata-ktx:2.7.0"
}