Skip to content

Commit

Permalink
increase version
Browse files Browse the repository at this point in the history
  • Loading branch information
talhafaki committed Nov 23, 2023
1 parent 28786c5 commit eb7d903
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 24 deletions.
7 changes: 1 addition & 6 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,7 @@ android {
compose = true
}
composeOptions {
kotlinCompilerExtensionVersion = "1.5.1"
}
packaging {
resources {
excludes += "/META-INF/{AL2.0,LGPL2.1}"
}
kotlinCompilerExtensionVersion = "1.4.8"
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ import androidx.compose.runtime.remember
import androidx.compose.ui.Modifier
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.unit.dp
import com.loftymr.countrycodepicker.ui.theme.CountryCodePickerTheme
import com.loftymr.countrycp.CountryCP
import com.loftymr.countrycp.ui.theme.CountryCodePickerTheme
import com.loftymr.countrycp.utils.EMPTY_STRING
import com.loftymr.countrycp.utils.isPhoneNumberValid

Expand Down
4 changes: 2 additions & 2 deletions countrycp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ android {
compose = true
}
composeOptions {
kotlinCompilerExtensionVersion = "1.5.1"
kotlinCompilerExtensionVersion = "1.4.8"
}
}

Expand All @@ -66,7 +66,7 @@ afterEvaluate {
register<MavenPublication>("release") {
groupId = "com.github.tfaki"
artifactId = "countrycp"
version = "1.0.1"
version = "1.0.2"

from(components["release"])
}
Expand Down
4 changes: 0 additions & 4 deletions countrycp/src/main/AndroidManifest.xml

This file was deleted.

2 changes: 1 addition & 1 deletion countrycp/src/main/java/com/loftymr/countrycp/Country.kt
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,6 @@ enum class Country(
Zimbabwe("ZW", "+263");

companion object {
val countryList = entries.toList()
val countryList = enumValues<Country>().toList()
}
}
13 changes: 3 additions & 10 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,22 +1,18 @@
[versions]
agp = "8.3.0-alpha12"
gradle = "8.3.0-alpha12"
kotlin = "1.9.0"
agp = "7.3.0"
kotlin = "1.8.22"
coreKtx = "1.12.0"
junit = "4.13.2"
junitVersion = "1.1.5"
espressoCore = "3.5.1"
kotlinGradlePlugin = "1.7.20"
lifecycleRuntimeKtx = "2.6.2"
activityCompose = "1.8.1"
composeBom = "2023.08.00"
libPhoneNumber = "8.13.25"
appcompat = "1.6.1"
material = "1.10.0"
material3 = "1.1.0"

[libraries]
androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" }
gradle = { module = "com.android.tools.build:gradle", version.ref = "gradle" }
junit = { group = "junit", name = "junit", version.ref = "junit" }
androidx-junit = { group = "androidx.test.ext", name = "junit", version.ref = "junitVersion" }
androidx-espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "espressoCore" }
Expand All @@ -30,10 +26,7 @@ androidx-ui-tooling-preview = { group = "androidx.compose.ui", name = "ui-toolin
androidx-ui-test-manifest = { group = "androidx.compose.ui", name = "ui-test-manifest" }
androidx-ui-test-junit4 = { group = "androidx.compose.ui", name = "ui-test-junit4" }
androidx-material3 = { group = "androidx.compose.material3", name = "material3" }
kotlin-gradle-plugin = { module = "org.jetbrains.kotlin:kotlin-gradle-plugin", version.ref = "kotlin" }
libPhoneNumber = { group = "com.googlecode.libphonenumber", name = "libphonenumber", version.ref = "libPhoneNumber"}
androidx-appcompat = { group = "androidx.appcompat", name = "appcompat", version.ref = "appcompat" }
material = { group = "com.google.android.material", name = "material", version.ref = "material" }

[plugins]
androidApplication = { id = "com.android.application", version.ref = "agp" }
Expand Down
4 changes: 4 additions & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ dependencyResolutionManagement {
repositories {
google()
mavenCentral()
maven {
url = uri("http://jitpack.io")
isAllowInsecureProtocol = true
}
}
}

Expand Down

0 comments on commit eb7d903

Please sign in to comment.