Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
hbb20 committed Jan 29, 2023
1 parent a5f9f54 commit 5064a88
Show file tree
Hide file tree
Showing 9 changed files with 29 additions and 13 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Next Release]

## 2.6.1 - 2022-7-24
- Updated Pakistan Flag [PR](https://github.com/hbb20/CountryCodePickerProject/pull/571)
- Adds Belarusian language #565 by [Vlad Petrushkevich](https://github.com/Vladuken)
- Adds Hausa language #559 by [Auwal Alhassan Abubakar](https://github.com/A4Gumel)
- Adds Tamil language #554 by [Kamalakannan G](https://github.com/kamal-lab)

## 2.6.1 - 2022-7-24
- Changed name code returned by English locale instead of local
locale [Issue](https://github.com/hbb20/CountryCodePickerProject/issues/539)
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,9 @@ To check all xml properties available for CCP and CCP Selection ppDialog, please
- Thai language support by [offerre](https://github.com/offerre)
- BASQUE language support by [David Benito Fdz.](https://github.com/Davidbf)
- Hungarian language support by [valivalter](https://github.com/valivalter)
- Belarusian language supprt by [Vlad Petrushkevich](https://github.com/Vladuken)
- Hausa language support by [Auwal Alhassan Abubakar](https://github.com/A4Gumel)
- Tamil language support by [Kamalakannan G](https://github.com/kamal-lab)

# Contribution
- To add a new country, follow the [guide to add new country](https://github.com/hbb20/CountryCodePickerProject/wiki/Guide-to-add-new-country-in-list).
Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'

android {
compileSdkVersion 30
compileSdkVersion 33

defaultConfig {
applicationId "in.hbb20.countrycodepickerproject"
minSdkVersion 14
targetSdkVersion 30
targetSdkVersion 33
versionCode 7
versionName "2.2.4"
}
Expand Down
17 changes: 12 additions & 5 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,13 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="in.hbb20.countrycodepickerproject">
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="in.hbb20.countrycodepickerproject"
>

<application
android:icon="@drawable/ic_ccp_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".HomeActivity">
android:theme="@style/AppTheme"
>
<activity
android:name=".HomeActivity"
android:exported="true"
>
<intent-filter>
<action android:name="android.intent.action.MAIN" />

Expand All @@ -17,7 +23,8 @@

<activity
android:name=".ExampleActivity"
android:windowSoftInputMode="stateHidden" />
android:windowSoftInputMode="stateHidden"
/>
</application>

</manifest>
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.0.1'
classpath 'com.android.tools.build:gradle:7.4.0'
classpath 'com.vanniktech:gradle-maven-publish-plugin:0.14.2'
classpath 'org.jetbrains.dokka:dokka-gradle-plugin:1.4.10.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
Expand Down
4 changes: 2 additions & 2 deletions ccp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ apply plugin: 'com.android.library'
apply plugin: 'com.vanniktech.maven.publish'

android {
compileSdkVersion 30
compileSdkVersion 33

defaultConfig {
minSdkVersion 14
targetSdkVersion 30
targetSdkVersion 33
}
buildTypes {
release {
Expand Down
2 changes: 1 addition & 1 deletion ccp/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
GROUP=com.hbb20
POM_ARTIFACT_ID=ccp
VERSION_NAME=2.6.1
VERSION_NAME=2.7.0
POM_NAME=CountryCodePicker
POM_PACKAGING=aar
POM_DESCRIPTION=Country Code Picker (CCP) is an android library which provides an easy way to search and select international country code for the phone number.
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@
# org.gradle.parallel=true
android.enableJetifier=true
android.useAndroidX=true
kotlinVersion=1.5.10
kotlinVersion=1.8.0
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-all.zip

0 comments on commit 5064a88

Please sign in to comment.