Added Slovenian translation (from Andrej Žgavec). Had to update build.gradle dependencies to get it to compile

This commit is contained in:
Graham Jones
2022-03-02 23:32:14 +00:00
parent e2613a3fb7
commit d6b397b6e2
7 changed files with 368 additions and 22 deletions

View File

@@ -1,7 +1,7 @@
apply plugin: 'com.android.application'
android {
compileSdkVersion 30
compileSdkVersion 31
useLibrary 'org.apache.http.legacy'
defaultConfig {
@@ -31,34 +31,26 @@ android {
}
dependencies {
implementation 'androidx.multidex:multidex:2.0.0'
implementation 'androidx.multidex:multidex:2.0.1'
implementation files('libs/mpandroidchartlibrary-2-0-7.jar')
implementation 'com.getpebble:pebblekit:3.1.0@aar'
// Unit testing dependencies
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
//implementation 'androidx.appcompat:appcompat:1.4.0'
//implementation 'androidx.constraintlayout:constraintlayout:2.1.2'
//implementation 'androidx.appcompat:appcompat:1.2.0'
//implementation 'com.google.android.material:material:1.1.0'
//implementation 'androidx.annotation:annotation:1.1.0'
//implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
//implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.2.0'
//implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.2.0'
testImplementation 'junit:junit:4.12'
implementation 'androidx.constraintlayout:constraintlayout:2.1.3'
testImplementation 'junit:junit:4.13.2'
// Set this dependency if you want to use Mockito
testImplementation 'org.mockito:mockito-core:1.10.19'
testImplementation 'org.mockito:mockito-core:4.3.1'
// Set this dependency if you want to use Hamcrest matching
testImplementation 'org.hamcrest:hamcrest-library:1.1'
implementation 'androidx.appcompat:appcompat:1.0.0'
testImplementation 'org.hamcrest:hamcrest-library:2.2'
implementation 'androidx.appcompat:appcompat:1.4.1'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
//compile files('libs/JTransforms-3.1-with-dependencies.jar')
implementation 'org.apache.commons:commons-math3:3.6.1'
// google play services used for location finding for SMS alerts.
implementation 'com.google.android.gms:play-services:10.0.1'
implementation 'com.github.wendykierp:JTransforms:3.0'
implementation 'com.google.android.gms:play-services-location:10.0.0'
//implementation 'com.google.android.gms:play-services:+'
implementation 'com.google.android.gms:play-services-wearable:+'
implementation 'com.github.wendykierp:JTransforms:3.1'
implementation 'com.google.android.gms:play-services-location:+'
//implementation 'com.github.RohitSurwase.UCE-Handler:uce_handler:1.3'
testImplementation 'org.robolectric:robolectric:4.3'
testImplementation 'org.robolectric:robolectric:4.7.3'
implementation 'com.android.volley:volley:1.2.1'
}