Skip to content

Commit 72f2c7d

Browse files
committed
Version 1.0.4
1 parent 1a6af58 commit 72f2c7d

File tree

6 files changed

+27
-27
lines changed

6 files changed

+27
-27
lines changed

.idea/misc.xml

Lines changed: 1 addition & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/build.gradle

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
apply plugin: 'com.android.application'
22

33
android {
4-
compileSdkVersion 25
5-
buildToolsVersion "25.0.2"
4+
compileSdkVersion 27
65
defaultConfig {
76
applicationId "com.marcoscg.ratedialogsample"
87
minSdkVersion 14
9-
targetSdkVersion 25
10-
versionCode 103
11-
versionName "1.0.3"
8+
targetSdkVersion 27
9+
versionCode 104
10+
versionName "1.0.4"
1211
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
1312
}
1413
buildTypes {
@@ -25,6 +24,6 @@ dependencies {
2524
exclude group: 'com.android.support', module: 'support-annotations'
2625
})
2726
compile project(':ratedialog')
28-
compile 'com.android.support:appcompat-v7:25.3.1'
27+
compile 'com.android.support:appcompat-v7:27.0.2'
2928
testCompile 'junit:junit:4.12'
3029
}

build.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@
22

33
buildscript {
44
repositories {
5+
google()
56
jcenter()
67
}
78
dependencies {
8-
classpath 'com.android.tools.build:gradle:2.2.1'
9+
classpath 'com.android.tools.build:gradle:3.0.1'
910

1011
// NOTE: Do not place your application dependencies here; they belong
1112
// in the individual module build.gradle files
@@ -14,6 +15,7 @@ buildscript {
1415

1516
allprojects {
1617
repositories {
18+
google()
1719
jcenter()
1820
}
1921
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Mon Dec 28 10:00:20 PST 2015
1+
#Mon Jan 29 14:42:19 CET 2018
22
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-2.14.1-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip

ratedialog/build.gradle

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
apply plugin: 'com.android.library'
22

33
android {
4-
compileSdkVersion 25
5-
buildToolsVersion "25.0.2"
4+
compileSdkVersion 27
65

76
defaultConfig {
8-
minSdkVersion 9
9-
targetSdkVersion 25
10-
versionCode 103
11-
versionName "1.0.3"
7+
minSdkVersion 14
8+
targetSdkVersion 27
9+
versionCode 104
10+
versionName "1.0.4"
1211

1312
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
1413

@@ -26,6 +25,6 @@ dependencies {
2625
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
2726
exclude group: 'com.android.support', module: 'support-annotations'
2827
})
29-
compile 'com.android.support:appcompat-v7:25.3.1'
28+
compile 'com.android.support:appcompat-v7:27.0.2'
3029
testCompile 'junit:junit:4.12'
3130
}
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<resources>
2+
3+
<string name="rate_dialog_title">%s\'ı değerlendir</string>
4+
<string name="rate_dialog_message">Eğer uygulamayı beğendiysen, sadece birkaç dakikanı ayırıp bize oy vererek destek olabilirsin.</string>
5+
<string name="rate_dialog_action_rate">Değerlendir</string>
6+
<string name="rate_dialog_action_never">Hayır, teşekkürler</string>
7+
<string name="rate_dialog_action_later">Sonra</string>
8+
<string name="rate_dialog_thank_you">Teşekkürler!</string>
9+
10+
</resources>

0 commit comments

Comments
 (0)