Skip to content

Commit

Permalink
idk1
Browse files Browse the repository at this point in the history
  • Loading branch information
Dawid-Witkowski committed Dec 22, 2024
1 parent 4344c0c commit 2994371
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 9 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ android {

dependencies {
// working lib https://central.sonatype.com/artifact/io.github.dawid-witkowski/libtestmaven-runtime
implementation("io.github.dawid-witkowski:libtestmaven-runtime:0.0.1")
implementation("io.github.dawid-witkowski:libtestmaven-runtime:0.0.2")

implementation(libs.androidx.core.ktx)
implementation(libs.androidx.lifecycle.runtime.ktx)
Expand Down
7 changes: 1 addition & 6 deletions app/src/main/java/com/example/mavenlibtest/MainActivity.kt
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,7 @@ class MainActivity : ComponentActivity() {
enableEdgeToEdge()
setContent {
MavenLibTestTheme {
Scaffold(modifier = Modifier.fillMaxSize()) { innerPadding ->
Greeting(
name = "Android",
modifier = Modifier.padding(innerPadding)
)
}
ExampleClass().execute()
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ import android.util.Log

class ExampleClass {
fun execute() {
Log.i("examplelib", "execute: WORKS!")
Log.i("examplelib", "execute: WORKS3!")
}
}
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ RELEASE_SIGNING_ENABLED=true

GROUP=io.github.dawid-witkowski
POM_ARTIFACT_ID=libtestmaven-runtime
VERSION_NAME=0.0.2
VERSION_NAME=0.0.3

POM_NAME=libtestmaven
POM_DESCRIPTION=first library from dawid witkowski on maven
Expand Down

0 comments on commit 2994371

Please sign in to comment.