Skip to content

Commit 8e0b99a

Browse files
committed
Multiple instances support was added
1 parent e62dd17 commit 8e0b99a

File tree

15 files changed

+220
-172
lines changed

15 files changed

+220
-172
lines changed
590 Bytes
Binary file not shown.

.idea/codeStyles/Project.xml

Lines changed: 113 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/compiler.xml

Lines changed: 0 additions & 22 deletions
This file was deleted.

.idea/copyright/profiles_settings.xml

Lines changed: 0 additions & 3 deletions
This file was deleted.

.idea/dictionaries/marco.xml

Lines changed: 0 additions & 3 deletions
This file was deleted.

.idea/gradle.xml

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

.idea/misc.xml

Lines changed: 5 additions & 58 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

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

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/build.gradle

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

33
android {
4-
compileSdkVersion 27
4+
compileSdkVersion 28
55
defaultConfig {
66
applicationId "com.marcoscg.ratedialogsample"
77
minSdkVersion 14
8-
targetSdkVersion 27
9-
versionCode 105
10-
versionName "1.0.5"
8+
targetSdkVersion 28
9+
versionCode 106
10+
versionName "1.0.6"
1111
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
1212
}
1313
buildTypes {
@@ -19,11 +19,11 @@ android {
1919
}
2020

2121
dependencies {
22-
compile fileTree(dir: 'libs', include: ['*.jar'])
23-
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
22+
implementation fileTree(dir: 'libs', include: ['*.jar'])
23+
androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
2424
exclude group: 'com.android.support', module: 'support-annotations'
2525
})
26-
compile project(':ratedialog')
27-
compile 'com.android.support:appcompat-v7:27.1.1'
28-
testCompile 'junit:junit:4.12'
26+
implementation project(':ratedialog')
27+
implementation 'com.android.support:appcompat-v7:28.0.0'
28+
testImplementation 'junit:junit:4.12'
2929
}

0 commit comments

Comments
 (0)