Socket connection now works
- Pairing a new device works (I did a lot since the last commit)
This commit is contained in:
@@ -21,6 +21,7 @@ android {
|
||||
release {
|
||||
minifyEnabled false
|
||||
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
||||
debuggable false
|
||||
}
|
||||
}
|
||||
compileOptions {
|
||||
@@ -30,10 +31,17 @@ android {
|
||||
kotlinOptions {
|
||||
jvmTarget = '1.8'
|
||||
}
|
||||
buildFeatures {
|
||||
viewBinding true
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
|
||||
implementation ('io.socket:socket.io-client:2.0.1') {
|
||||
// excluding org.json which is provided by Android
|
||||
exclude group: 'org.json', module: 'json'
|
||||
}
|
||||
implementation fileTree(dir: 'libs', include: ['lineage-sdk.jar'])
|
||||
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
||||
implementation 'androidx.core:core-ktx:1.3.2'
|
||||
implementation 'androidx.appcompat:appcompat:1.1.0'
|
||||
@@ -46,6 +54,6 @@ dependencies {
|
||||
implementation 'com.rabbitmq:amqp-client:5.9.0'
|
||||
implementation "com.squareup.okhttp3:okhttp:4.9.0"
|
||||
testImplementation 'junit:junit:4.+'
|
||||
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
|
||||
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
|
||||
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
|
||||
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
|
||||
}
|
||||
Reference in New Issue
Block a user