Skip to content

Commit 8b46a4a

Browse files
committed
migrate groovy to kotlin
1 parent 9c1103e commit 8b46a4a

File tree

26 files changed

+348
-336
lines changed

26 files changed

+348
-336
lines changed

AutomaticAdvancedSettingsExpander/build.gradle

Lines changed: 0 additions & 24 deletions
This file was deleted.
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
plugins {
2+
id("com.android.application")
3+
kotlin("android")
4+
}
5+
6+
android {
7+
val packageName = "de.binarynoise.AutomaticAdvancedSettingsExpander"
8+
namespace = packageName
9+
10+
defaultConfig {
11+
applicationId = packageName
12+
minSdk = 16
13+
targetSdk = 33
14+
compileSdk = 33
15+
versionCode = 2
16+
versionName = "1.1"
17+
}
18+
19+
signingConfigs {
20+
create("release") {
21+
keyAlias = "automaticadvancedsettingsexpander"
22+
}
23+
}
24+
}

BetterBluetoothDeviceSort/build.gradle

Lines changed: 0 additions & 22 deletions
This file was deleted.
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
plugins {
2+
id("com.android.application")
3+
kotlin("android")
4+
}
5+
6+
android {
7+
val packageName = "de.binarynoise.betterBluetoothDeviceSort"
8+
namespace = packageName
9+
10+
defaultConfig {
11+
applicationId = packageName
12+
minSdk = 30
13+
targetSdk = 33
14+
compileSdk = 33
15+
versionCode = 1
16+
versionName = "1.0"
17+
}
18+
}
19+
20+
dependencies {
21+
implementation(project(":logger"))
22+
}

BetterVerboseWiFiLogging/build.gradle

Lines changed: 0 additions & 22 deletions
This file was deleted.
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
plugins {
2+
id("com.android.application")
3+
kotlin("android")
4+
}
5+
6+
android {
7+
val packageName = "de.binarynoise.betterVerboseWiFiLogging"
8+
namespace = packageName
9+
10+
defaultConfig {
11+
applicationId = packageName
12+
minSdk = 30
13+
targetSdk = 33
14+
compileSdk = 33
15+
versionCode = 1
16+
versionName = "1.0"
17+
}
18+
}
19+
20+
dependencies {
21+
implementation(project(":reflection"))
22+
}

DontResetIfBootedAndConnected/build.gradle

Lines changed: 0 additions & 22 deletions
This file was deleted.
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
plugins {
2+
id("com.android.application")
3+
kotlin("android")
4+
}
5+
6+
android {
7+
val packageName = "de.binarynoise.dontResetIfBootedAndConnected"
8+
namespace = packageName
9+
10+
defaultConfig {
11+
applicationId = packageName
12+
minSdk = 30
13+
targetSdk = 33
14+
compileSdk = 33
15+
versionCode = 1
16+
versionName = "1.0"
17+
}
18+
}
19+
20+
dependencies {
21+
22+
}

FreeNotifications/build.gradle

Lines changed: 0 additions & 22 deletions
This file was deleted.

FreeNotifications/build.gradle.kts

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
plugins {
2+
id("com.android.application")
3+
kotlin("android")
4+
}
5+
6+
android {
7+
val packageName = "de.binarynoise.freeNotifications"
8+
namespace = packageName
9+
10+
defaultConfig {
11+
applicationId = packageName
12+
minSdk = 26
13+
targetSdk = 33
14+
compileSdk = 33
15+
versionCode = 1
16+
versionName = "1.0"
17+
}
18+
}
19+
20+
dependencies {
21+
implementation(project(":reflection"))
22+
}

0 commit comments

Comments
 (0)