Skip to content

Commit

Permalink
Merge pull request #129 from seemoo-lab/v2.0
Browse files Browse the repository at this point in the history
V2.0
  • Loading branch information
Sn0wfreezeDev authored Jun 27, 2023
2 parents a53fb9e + c8b9a25 commit 68feff6
Show file tree
Hide file tree
Showing 121 changed files with 3,573 additions and 1,023 deletions.
2 changes: 1 addition & 1 deletion api.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
API_KEY="D1nvdpzB.zvCS4e1SmLRTULoql5wUftzgRrTJmj5R"
API_KEY="wfLvEz5s.bvrJ1CGKuvqeZB1q8v7oTirMMuWQjqjZ"
API_BASE_ADDRESS="https://tpe.seemoo.tu-darmstadt.de/api/"
61 changes: 31 additions & 30 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
plugins {
id 'com.android.application'
id 'kotlin-android'
id 'androidx.navigation.safeargs.kotlin'
id 'kotlin-kapt'
id 'dagger.hilt.android.plugin'
id 'androidx.navigation.safeargs.kotlin'
id 'com.mikepenz.aboutlibraries.plugin'
}

Expand All @@ -12,7 +12,7 @@ def apiProperties = new Properties()
apiProperties.load(new FileInputStream(apiPropertiesFile))

android {
compileSdkVersion 31
compileSdkVersion 33

buildFeatures {
viewBinding true
Expand All @@ -24,8 +24,8 @@ android {
applicationId "de.seemoo.at_tracking_detection"
minSdkVersion 21
targetSdkVersion 31
versionCode 35
versionName "1.4"
versionCode 37
versionName "2.0"

buildConfigField "String", "API_KEY", apiProperties["API_KEY"]
buildConfigField "String", "API_BASE_ADDRESS", apiProperties["API_BASE_ADDRESS"]
Expand Down Expand Up @@ -78,6 +78,7 @@ android {
excludes += ['META-INF/AL2.0', 'META-INF/LGPL2.1']
}
}
namespace 'de.seemoo.at_tracking_detection'

}

Expand All @@ -90,16 +91,16 @@ dependencies {

implementation 'com.jakewharton.timber:timber:5.0.1'
implementation 'com.github.bastienpaulfr:Treessence:1.0.0'
implementation 'androidx.work:work-runtime-ktx:2.7.1'
implementation 'androidx.core:core-ktx:1.7.0'
implementation 'androidx.appcompat:appcompat:1.4.1'
implementation 'com.google.android.material:material:1.6.0-beta01'
implementation 'androidx.work:work-runtime-ktx:2.8.0'
implementation 'androidx.core:core-ktx:1.9.0'
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'com.google.android.material:material:1.8.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'androidx.vectordrawable:vectordrawable:1.1.0'
implementation 'androidx.navigation:navigation-fragment-ktx:2.4.2'
implementation 'androidx.navigation:navigation-ui-ktx:2.4.2'
implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.4.1'
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.4.1'
implementation 'androidx.navigation:navigation-fragment-ktx:2.5.3'
implementation 'androidx.navigation:navigation-ui-ktx:2.5.3'
implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.5.1'
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1'
implementation 'androidx.preference:preference-ktx:1.2.0'
implementation 'androidx.cardview:cardview:1.0.0'
implementation 'androidx.recyclerview:recyclerview:1.2.1'
Expand All @@ -109,7 +110,7 @@ dependencies {
implementation 'com.squareup.okhttp3:okhttp:5.0.0-alpha.5'
implementation 'com.google.code.gson:gson:2.9.0'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'androidx.work:work-testing:2.7.1'
implementation 'androidx.work:work-testing:2.8.0'
debugImplementation 'com.squareup.okhttp3:logging-interceptor:5.0.0-alpha.5'

implementation "com.google.dagger:hilt-android:$hilt_version"
Expand All @@ -132,35 +133,35 @@ dependencies {
implementation "androidx.room:room-ktx:$room_version"
kapt "androidx.room:room-compiler:$room_version"

androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
androidTestImplementation "androidx.room:room-testing:2.4.2"
androidTestImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.6.1'
androidTestImplementation 'androidx.test:core:1.4.0'
androidTestImplementation 'androidx.test:core-ktx:1.4.0'
androidTestImplementation 'androidx.test.ext:junit-ktx:1.1.3'
androidTestImplementation 'androidx.test:runner:1.4.0'
androidTestImplementation 'androidx.test.espresso:espresso-contrib:3.4.0'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
androidTestImplementation "androidx.room:room-testing:2.5.0"
androidTestImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.6.4'
androidTestImplementation 'androidx.test:core:1.5.0'
androidTestImplementation 'androidx.test:core-ktx:1.5.0'
androidTestImplementation 'androidx.test.ext:junit-ktx:1.1.5'
androidTestImplementation 'androidx.test:runner:1.5.2'
androidTestImplementation 'androidx.test.espresso:espresso-contrib:3.5.1'

coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.5'
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:2.0.2'

//Finds memory leaks while running the app in Debug mode
// debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.8.1'

//Compose
// Integration with activities
implementation 'androidx.activity:activity-compose:1.4.0'
implementation 'androidx.activity:activity-compose:1.6.1'
// Compose Material Design
implementation 'androidx.compose.material:material:1.1.1'
implementation 'androidx.compose.material:material:1.3.1'
// Animations
implementation 'androidx.compose.animation:animation:1.1.1'
implementation 'androidx.compose.animation:animation:1.3.3'
// Tooling support (Previews, etc.)
implementation 'androidx.compose.ui:ui-tooling:1.1.1'
implementation 'androidx.compose.ui:ui-tooling:1.3.3'
// Integration with ViewModels
implementation 'androidx.lifecycle:lifecycle-viewmodel-compose:2.4.1'
implementation 'androidx.lifecycle:lifecycle-viewmodel-compose:2.5.1'
// UI Tests
androidTestImplementation 'androidx.compose.ui:ui-test-junit4:1.1.1'
androidTestImplementation 'androidx.compose.ui:ui-test-junit4:1.3.3'
// When using a MDC theme
implementation "com.google.android.material:compose-theme-adapter:1.1.10"
implementation "com.google.android.material:compose-theme-adapter:1.2.1"

}
Loading

0 comments on commit 68feff6

Please sign in to comment.