Skip to content

Commit cfd809c

Browse files
Merge branch 'develop' into core-v2
2 parents 895530e + 3e3b741 commit cfd809c

File tree

14 files changed

+21
-400
lines changed

14 files changed

+21
-400
lines changed

.github/workflows/build-on-pull-request.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ jobs:
88
runs-on: ubuntu-latest
99

1010
steps:
11-
- uses: actions/checkout@v3
12-
- uses: actions/setup-java@v3
11+
- uses: actions/checkout@v4
12+
- uses: actions/setup-java@v4
1313
with:
1414
distribution: 'oracle'
1515
java-version: '17'

build.gradle.kts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ buildscript {
1212
}
1313

1414
plugins {
15-
//trick: for the same plugin versions in all sub-modules
16-
id("com.android.application").apply(false)
17-
id("com.android.library").apply(false)
18-
id("com.google.devtools.ksp").apply(false)
15+
alias(libs.plugins.android.library) apply false
16+
alias(libs.plugins.kotlin.android) apply false
17+
alias(libs.plugins.android.application) apply false
18+
alias(libs.plugins.ksp) apply false
1919
}
2020

21-
tasks.register("clean", Delete::class) {
21+
project.tasks.register("clean", Delete::class) {
2222
delete(rootProject.buildDir)
2323
}

data/networking/proxyman/src/main/java/be/appwise/proxyman/ProxyManNetworkDiscoveryManager.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ object ProxyManNetworkDiscoveryManager {
182182
override fun onServiceFound(service: NsdServiceInfo) {
183183
// A service was found! Do something with it.
184184
showDebugMessage("discovery success $service")
185-
val isProxymanService = if (mAllowedServices.isEmpty()) service.serviceName.contains("Proxyman-") else service.serviceName.substringAfter("Proxyman-").toLowerCase(Locale.ROOT) in mAllowedServices
185+
val isProxymanService = if (mAllowedServices.isEmpty()) service.serviceName.contains("Proxyman-") else service.serviceName.substringAfter("Proxyman-").lowercase() in mAllowedServices
186186
when {
187187
service.serviceType != SERVICE_TYPE -> // Service type is the string containing the protocol and
188188
// transport layer for this service.

data/networking/src/main/java/be/appwise/networking/NetworkConstants.kt

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,4 @@ object NetworkConstants {
2020

2121
const val HEADER_VALUE_ACCEPT_APPLICATION_JSON = "application/json"
2222
const val HEADER_VALUE_PLATFORM_ANDROID = "android"
23-
24-
const val BAGEL_INTERCEPTOR_DEVICE_BLUETOOTH_NAME = "bluetooth_name"
25-
const val BAGEL_INTERCEPTOR_DEVICE_NAME = "device_name"
2623
}

data/networking/src/main/java/be/appwise/networking/bagel/BagelInterceptor.kt

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

data/networking/src/main/java/be/appwise/networking/bagel/BagelMessage.kt

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

data/networking/src/main/java/be/appwise/networking/bagel/BagelNetworkDiscoveryManager.kt

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

0 commit comments

Comments
 (0)