android-sdk/samples/kotlin-android-app/build.gradle
John McKean 52ef437edd
Handle InApp Messages
- Bump version to `1.0.0`
- Bump lib versions
- Handle push to refresh messages
- target 36 and drop 21/22
2025-09-22 09:29:14 -05:00

50 lines
No EOL
1.3 KiB
Groovy

plugins {
id 'com.android.application'
id 'kotlin-android'
id 'com.google.gms.google-services'
}
android {
namespace "com.parcelvoy.example"
compileSdkVersion 36
defaultConfig {
applicationId "com.parcelvoy.example"
minSdkVersion 23
targetSdkVersion 36
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = '17'
}
// Add this block
buildFeatures {
buildConfig = true
}
}
dependencies {
implementation project(':core')
implementation 'androidx.core:core-ktx:1.17.0'
implementation 'androidx.appcompat:appcompat:1.7.1'
implementation 'com.google.android.material:material:1.13.0'
implementation 'androidx.constraintlayout:constraintlayout:2.2.1'
implementation 'androidx.lifecycle:lifecycle-process:2.9.3'
implementation platform('com.google.firebase:firebase-bom:34.2.0')
implementation 'com.google.firebase:firebase-messaging'
}