diff options
| author | bt <bt@rctt.net> | 2026-05-03 01:35:34 +0200 |
|---|---|---|
| committer | bt <bt@rctt.net> | 2026-05-03 01:35:34 +0200 |
| commit | cde732059b237af7b147d58c43e4f5b03b9fbddd (patch) | |
| tree | 0c153b7daabdec910d6317953acca517a839e644 /app/build.gradle.kts | |
| download | netmon-cde732059b237af7b147d58c43e4f5b03b9fbddd.tar.gz netmon-cde732059b237af7b147d58c43e4f5b03b9fbddd.zip | |
Initial commit
Diffstat (limited to 'app/build.gradle.kts')
| -rw-r--r-- | app/build.gradle.kts | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/app/build.gradle.kts b/app/build.gradle.kts new file mode 100644 index 0000000..98e6f42 --- /dev/null +++ b/app/build.gradle.kts @@ -0,0 +1,47 @@ +plugins { + alias(libs.plugins.android.application) +} + +android { + namespace = "net.rctt.netmon" + compileSdk { + version = release(36) { + minorApiLevel = 1 + } + } + + defaultConfig { + applicationId = "net.rctt.netmon" + minSdk = 26 + targetSdk = 36 + versionCode = 1 + versionName = "1.0" + + testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" + } + + buildTypes { + release { + isMinifyEnabled = false + proguardFiles( + getDefaultProguardFile("proguard-android-optimize.txt"), + "proguard-rules.pro" + ) + } + } + compileOptions { + sourceCompatibility = JavaVersion.VERSION_11 + targetCompatibility = JavaVersion.VERSION_11 + } +} + +dependencies { + implementation(libs.androidx.core.ktx) + implementation(libs.androidx.appcompat) + implementation(libs.material) + implementation(libs.androidx.activity) + implementation(libs.androidx.constraintlayout) + testImplementation(libs.junit) + androidTestImplementation(libs.androidx.junit) + androidTestImplementation(libs.androidx.espresso.core) +}
\ No newline at end of file |
