Skip to content

Commit 5064a88

Browse files
committed
update version
1 parent a5f9f54 commit 5064a88

9 files changed

+29
-13
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Next Release]
99

10+
## 2.6.1 - 2022-7-24
11+
- Updated Pakistan Flag [PR](https://github.com/hbb20/CountryCodePickerProject/pull/571)
12+
- Adds Belarusian language #565 by [Vlad Petrushkevich](https://github.com/Vladuken)
13+
- Adds Hausa language #559 by [Auwal Alhassan Abubakar](https://github.com/A4Gumel)
14+
- Adds Tamil language #554 by [Kamalakannan G](https://github.com/kamal-lab)
15+
1016
## 2.6.1 - 2022-7-24
1117
- Changed name code returned by English locale instead of local
1218
locale [Issue](https://github.com/hbb20/CountryCodePickerProject/issues/539)

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,9 @@ To check all xml properties available for CCP and CCP Selection ppDialog, please
9797
- Thai language support by [offerre](https://github.com/offerre)
9898
- BASQUE language support by [David Benito Fdz.](https://github.com/Davidbf)
9999
- Hungarian language support by [valivalter](https://github.com/valivalter)
100+
- Belarusian language supprt by [Vlad Petrushkevich](https://github.com/Vladuken)
101+
- Hausa language support by [Auwal Alhassan Abubakar](https://github.com/A4Gumel)
102+
- Tamil language support by [Kamalakannan G](https://github.com/kamal-lab)
100103

101104
# Contribution
102105
- 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).

app/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ apply plugin: 'com.android.application'
22
apply plugin: 'kotlin-android'
33

44
android {
5-
compileSdkVersion 30
5+
compileSdkVersion 33
66

77
defaultConfig {
88
applicationId "in.hbb20.countrycodepickerproject"
99
minSdkVersion 14
10-
targetSdkVersion 30
10+
targetSdkVersion 33
1111
versionCode 7
1212
versionName "2.2.4"
1313
}

app/src/main/AndroidManifest.xml

+12-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,19 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
package="in.hbb20.countrycodepickerproject">
2+
<manifest
3+
xmlns:android="http://schemas.android.com/apk/res/android"
4+
package="in.hbb20.countrycodepickerproject"
5+
>
46

57
<application
68
android:icon="@drawable/ic_ccp_launcher"
79
android:label="@string/app_name"
810
android:supportsRtl="true"
9-
android:theme="@style/AppTheme">
10-
<activity android:name=".HomeActivity">
11+
android:theme="@style/AppTheme"
12+
>
13+
<activity
14+
android:name=".HomeActivity"
15+
android:exported="true"
16+
>
1117
<intent-filter>
1218
<action android:name="android.intent.action.MAIN" />
1319

@@ -17,7 +23,8 @@
1723

1824
<activity
1925
android:name=".ExampleActivity"
20-
android:windowSoftInputMode="stateHidden" />
26+
android:windowSoftInputMode="stateHidden"
27+
/>
2128
</application>
2229

2330
</manifest>

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ buildscript {
66
mavenCentral()
77
}
88
dependencies {
9-
classpath 'com.android.tools.build:gradle:7.0.1'
9+
classpath 'com.android.tools.build:gradle:7.4.0'
1010
classpath 'com.vanniktech:gradle-maven-publish-plugin:0.14.2'
1111
classpath 'org.jetbrains.dokka:dokka-gradle-plugin:1.4.10.2'
1212
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"

ccp/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ apply plugin: 'com.android.library'
22
apply plugin: 'com.vanniktech.maven.publish'
33

44
android {
5-
compileSdkVersion 30
5+
compileSdkVersion 33
66

77
defaultConfig {
88
minSdkVersion 14
9-
targetSdkVersion 30
9+
targetSdkVersion 33
1010
}
1111
buildTypes {
1212
release {

ccp/gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
GROUP=com.hbb20
22
POM_ARTIFACT_ID=ccp
3-
VERSION_NAME=2.6.1
3+
VERSION_NAME=2.7.0
44
POM_NAME=CountryCodePicker
55
POM_PACKAGING=aar
66
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.

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818
# org.gradle.parallel=true
1919
android.enableJetifier=true
2020
android.useAndroidX=true
21-
kotlinVersion=1.5.10
21+
kotlinVersion=1.8.0

gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-all.zip

0 commit comments

Comments
 (0)