fix: restore AIDE build config and layer live find map correctly

This commit is contained in:
n0tst3v3
2026-08-19 03:50:02 -06:00
parent feb32c9cd1
commit 57861a19c6
12 changed files with 31 additions and 387 deletions
+5 -19
View File
@@ -1,37 +1,23 @@
plugins {
id 'com.android.application'
}
apply plugin: 'com.android.application'
android {
namespace 'com.wytehat.btlogger'
compileSdk 34
compileSdkVersion 21
defaultConfig {
applicationId "com.wytehat.btlogger"
// BLE scanning (ScanCallback, ScanResult) is API 21+, which the
// range finder relies on.
minSdk 21
// Deliberately left at 29: the service uses version-guarded
// reflection and legacy PendingIntent flags that change behaviour
// at targetSdk 31+.
targetSdk 29
minSdkVersion 14
targetSdkVersion 29
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
compile fileTree(dir: 'libs', include: ['*.jar'])
}