Files
syncthing-android/scripts/debug/SyncthingReceiverTestApp/app/build.gradle.kts
Catfriend1 81e946d01b scripts/debug: Add SyncthingReceiverTestApp
Uses com.github.catfriend1.syncthingandroid.permission.RECEIVE_SYNC_STATUS to listen to broadcast, e.g. including com.github.catfriend1.syncthingandroid.ACTION_NOTIFY_FOLDER_SYNC_COMPLETE
ref: https://github.com/Catfriend1/syncthing-android/pull/1410
2025-05-13 02:12:56 +02:00

32 lines
637 B
Kotlin

plugins {
alias(libs.plugins.android.application)
alias(libs.plugins.kotlin.android)
}
android {
namespace = "com.example.syncthingreceiver"
compileSdk = 35
defaultConfig {
applicationId = "com.example.syncthingreceiver"
minSdk = 29
targetSdk = 35
versionCode = 1
versionName = "1.0"
}
buildTypes {
release {
isMinifyEnabled = false
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
}
dependencies {
implementation(libs.androidx.appcompat)
}