Files
PurrfectSnap/mapper/build.gradle.kts
ΞTΞRNAL 544d618f87 Major Update!
This features a new bypass, new theme, etc
2025-12-23 17:09:18 +05:30

27 lines
497 B
Kotlin

plugins {
alias(libs.plugins.androidLibrary)
}
//test
android {
namespace = rootProject.ext["applicationId"].toString() + ".mapper"
compileSdk = 36
compileOptions {
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
}
defaultConfig {
minSdk = 28
}
}
dependencies {
implementation(libs.gson)
implementation(libs.coroutines)
implementation(libs.dexlib2)
testImplementation(libs.junit)
}