Skip to content

Commit

Permalink
refactor sdk version
Browse files Browse the repository at this point in the history
  • Loading branch information
Far5had70 committed Feb 18, 2019
1 parent 17e7d75 commit febf3a5
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 9 deletions.
Binary file modified .idea/caches/build_file_checksums.ser
Binary file not shown.
Binary file added .idea/caches/gradle_models.ser
Binary file not shown.
3 changes: 3 additions & 0 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 28
compileSdkVersion 27
defaultConfig {
applicationId "com.shaygan.datepicker"
minSdkVersion 16
targetSdkVersion 28
targetSdkVersion 27
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
Expand All @@ -21,7 +21,7 @@ android {
dependencies {
implementation project(':datepickerpersian')
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:28.0.0-rc02'
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/java/com/shaygan/datepicker/MainActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ private void dateRangePicker() {
.setTabIndicatorColor(getResources().getColor(R.color.white))
.setWheelTextColor(getResources().getColor(R.color.white_smoke))
.setWheelTextColorSelected(getResources().getColor(R.color.white))
.setWheelTextSize(9)
.setWheelTextSize(20)
.setCornerRadius(40)
.setTypeface(face)
.setDoneText("تائید")
Expand Down Expand Up @@ -93,7 +93,7 @@ private void datePicker() {
.setTabIndicatorColor(getResources().getColor(R.color.white))
.setWheelTextColor(getResources().getColor(R.color.white_smoke))
.setWheelTextColorSelected(getResources().getColor(R.color.white))
.setWheelTextSize(9)
.setWheelTextSize(20)
.setCornerRadius(40)
.setTypeface(face)
.setDoneText("تائید")
Expand Down
8 changes: 4 additions & 4 deletions datepickerpersian/build.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
apply plugin: 'com.android.library'

android {
compileSdkVersion 28
compileSdkVersion 27



defaultConfig {
minSdkVersion 16
targetSdkVersion 28
targetSdkVersion 27
versionCode 1
versionName "1.0"

Expand All @@ -27,11 +27,11 @@ android {
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])

implementation 'com.android.support:appcompat-v7:28.0.0-rc01'
implementation 'com.android.support:appcompat-v7:27.1.1'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation 'com.android.support:design:28.0.0-rc01'
implementation 'com.android.support:design:27.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
}

Expand Down

0 comments on commit febf3a5

Please sign in to comment.