mirror of
https://fast.feibisi.com/https://github.com/parcelvoy/android-sdk.git
synced 2026-03-07 04:55:02 +08:00
46 lines
No EOL
1.2 KiB
Groovy
46 lines
No EOL
1.2 KiB
Groovy
plugins {
|
|
id 'com.android.application'
|
|
id 'kotlin-android'
|
|
id 'com.google.gms.google-services'
|
|
}
|
|
|
|
android {
|
|
compileSdkVersion 33
|
|
buildToolsVersion "33.0.0"
|
|
|
|
defaultConfig {
|
|
applicationId "com.parcelvoy.example"
|
|
minSdkVersion 21
|
|
targetSdkVersion 33
|
|
versionCode 1
|
|
versionName "1.0"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled true
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
kotlinOptions {
|
|
jvmTarget = '1.8'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':core')
|
|
|
|
implementation 'androidx.core:core-ktx:1.10.0'
|
|
implementation 'androidx.appcompat:appcompat:1.6.1'
|
|
implementation 'com.google.android.material:material:1.8.0'
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
|
|
|
|
implementation 'androidx.lifecycle:lifecycle-process:2.6.1'
|
|
|
|
implementation platform('com.google.firebase:firebase-bom:32.0.0')
|
|
implementation 'com.google.firebase:firebase-messaging-ktx'
|
|
} |