Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions .idea/appInsightsSettings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions .idea/deploymentTargetSelector.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 19 additions & 0 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

44 changes: 44 additions & 0 deletions .idea/inspectionProfiles/Project_Default.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/kotlinc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 21 additions & 5 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
plugins {
alias(libs.plugins.android.application)
alias(libs.plugins.kotlin.android)
// id "kotlin-serialization' // Make sure this is included


}

Expand Down Expand Up @@ -46,6 +48,8 @@ android {
packaging {
resources {
excludes += "/META-INF/{AL2.0,LGPL2.1}"
excludes += "META-INF/INDEX.LIST"
excludes += "META-INF/io.netty.versions.properties"
}
}
}
Expand All @@ -61,6 +65,7 @@ dependencies {
implementation(libs.androidx.ui.tooling.preview)
implementation(libs.androidx.material3)
implementation(libs.androidx.compose.material)
implementation(libs.play.services.dtdi)
testImplementation(libs.junit)
androidTestImplementation(libs.androidx.junit)
androidTestImplementation(libs.androidx.espresso.core)
Expand All @@ -84,19 +89,30 @@ dependencies {
implementation ("androidx.work:work-runtime-ktx:2.7.1")


implementation ("androidx.navigation:navigation-compose:2.8.3")



// implementation(libs.charts)


implementation ("androidx.navigation:navigation-compose:2.8.3")

implementation (libs.kotlinx.serialization.json)
// implementation ("com.github.bumptech.glide:glide:4.15.1")

implementation(libs.timber)
// implementation (libs.mpandroidchart)
//proxy
// Netty dependencies
// implementation ("io.netty:netty-all:4.1.95.Final")
// implementation ("io.netty:netty-all:4.1.68.Final")
// Netty dependencies
implementation ("io.netty:netty-handler:4.1.68.Final")
implementation ("io.netty:netty-codec-socks:4.1.68.Final")
implementation ("io.netty:netty-transport:4.1.68.Final")
implementation ("io.netty:netty-transport-native-epoll:4.1.68.Final")



// implementation(libs.charts)





Expand Down
Loading