Skip to content

Commit

Permalink
Merge pull request #10 from codewith-fun/fix/laxmi_country
Browse files Browse the repository at this point in the history
Fix/laxmi country
  • Loading branch information
lkant8 committed Dec 21, 2022
2 parents 10dd87f + a2dc340 commit d2410a6
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ android {
compileSdk 33

defaultConfig {
applicationId "com.mcode.ccp"
applicationId "com.mcode.dccp"
minSdk 21
targetSdk 33
versionCode 1
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.mcode.ccp">
package="com.mcode.dccp">

<application
android:allowBackup="true"
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/java/com/mcode/countrycode/MainActivity.kt
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ fun SampleCountryPicker() {
modifier = Modifier
.fillMaxWidth()
.padding(16.dp),
text = stringResource(R.string.select_country_text), textAlign = TextAlign.Center,
text = stringResource(R.string.select_country), textAlign = TextAlign.Center,
fontWeight = FontWeight.Bold,
fontSize = 20.sp
)
Expand All @@ -64,7 +64,7 @@ fun SampleCountryPicker() {
}
) {
CountryTextField(
label = stringResource(R.string.select_country_text),
label = stringResource(R.string.select_country),
modifier = Modifier
.padding(top = 50.dp)
.align(Alignment.TopCenter),
Expand Down
26 changes: 13 additions & 13 deletions ccp/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
id 'com.android.library'
id 'org.jetbrains.kotlin.android'
id 'maven-publish'
// id 'maven-publish'

}

Expand Down Expand Up @@ -68,15 +68,15 @@ dependencies {

}

afterEvaluate {
publishing {
publications( {
release(MavenPublication) {
from components.release
groupId = 'com.mcode'
artifactId = 'Country-Code-picker'
version = '1.0'
}
})
}
}
//afterEvaluate {
// publishing {
// publications( {
// release(MavenPublication) {
// from components.release
// groupId = 'com.mcode'
// artifactId = 'Country-Code-picker'
// version = '1.0'
// }
// })
// }
//}

0 comments on commit d2410a6

Please sign in to comment.