Skip to content

Commit 907d633

Browse files
Merge pull request #20 from alancamargo92/update_dependencies_remove_project_files
Updated dependencies and removed project files
2 parents 847a70a + 31637f3 commit 907d633

File tree

19 files changed

+22
-226
lines changed

19 files changed

+22
-226
lines changed

.gitignore

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
*.iml
2-
.gradle
3-
/local.properties
4-
/.idea/workspace.xml
5-
/.idea/libraries
2+
.gradle/
3+
local.properties
4+
.idea/
65
.DS_Store
7-
/build
8-
/captures
6+
build/
7+
captures/
98
.externalNativeBuild
9+

.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/gradle.xml

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

.idea/misc.xml

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

.idea/modules.xml

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

.idea/runConfigurations.xml

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

.idea/vcs.xml

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

EasyFlipView/build.gradle

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ ext {
2121
siteUrl = 'https://github.com/wajahatkarim3/EasyFlipView'
2222
gitUrl = 'https://github.com/wajahatkarim3/EasyFlipView.git'
2323

24-
libraryVersion = '2.0.5'
24+
libraryVersion = '2.0.6'
2525

2626
developerId = 'wajahatkarim3'
2727
developerName = 'Wajahat Karim'
@@ -33,24 +33,25 @@ ext {
3333
}
3434

3535
android {
36-
compileSdkVersion 26
37-
buildToolsVersion '26.0.2'
36+
compileSdkVersion 27
3837

3938
defaultConfig {
4039
minSdkVersion 15
41-
targetSdkVersion 26
40+
targetSdkVersion 27
4241
versionCode 1
4342
versionName "1.0"
4443

4544
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
4645

4746
}
47+
4848
buildTypes {
4949
release {
5050
minifyEnabled false
5151
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
5252
}
5353
}
54+
5455
lintOptions {
5556
abortOnError false
5657
}

EasyFlipView/src/androidTest/java/com/wajahatkarim3/easyflipview/ExampleInstrumentedTest.java

Lines changed: 0 additions & 26 deletions
This file was deleted.
Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
22
package="com.wajahatkarim3.easyflipview">
33

4-
<application android:allowBackup="true" android:label="@string/app_name"
5-
android:supportsRtl="true">
6-
7-
</application>
4+
<application android:allowBackup="true"
5+
android:supportsRtl="true"/>
86

97
</manifest>

EasyFlipView/src/main/res/values/strings.xml

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

EasyFlipView/src/test/java/com/wajahatkarim3/easyflipview/ExampleUnitTest.java

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

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Installation
1616
Add this in your app's build.gradle file:
1717
```groovy
1818
dependencies {
19-
compile 'com.wajahatkarim3.EasyFlipView:EasyFlipView:2.0.5'
19+
implementation 'com.wajahatkarim3.EasyFlipView:EasyFlipView:2.0.6'
2020
}
2121
```
2222

@@ -26,7 +26,7 @@ Or add EasyFlipView as a new dependency inside your pom.xml
2626
<dependency>
2727
<groupId>com.wajahatkarim3.EasyFlipView</groupId>
2828
<artifactId>EasyFlipView</artifactId>
29-
<version>2.0.5</version>
29+
<version>2.0.6</version>
3030
<type>pom</type>
3131
</dependency>
3232
```

app/build.gradle

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

33
android {
4-
compileSdkVersion 26
5-
buildToolsVersion '26.0.2'
4+
compileSdkVersion 27
5+
66
defaultConfig {
77
applicationId "com.wajahatkarim3.easyflipview.demo"
88
minSdkVersion 15
9-
targetSdkVersion 25
9+
targetSdkVersion 27
1010
versionCode 1
1111
versionName "1.0"
1212
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

app/src/androidTest/java/com/wajahatkarim3/easyflipview/demo/ExampleInstrumentedTest.java

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

app/src/test/java/com/wajahatkarim3/easyflipview/demo/ExampleUnitTest.java

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

build.gradle

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,14 @@
1-
// Top-level build file where you can add configuration options common to all sub-projects/modules.
2-
31
buildscript {
42

5-
ext.supportVersion = '26.1.0'
3+
ext.supportVersion = '27.1.1'
64

75
repositories {
86
jcenter()
97
google()
108
}
11-
dependencies {
12-
classpath 'com.android.tools.build:gradle:3.0.0'
139

14-
// NOTE: Do not place your application dependencies here; they belong
15-
// in the individual module build.gradle files
10+
dependencies {
11+
classpath 'com.android.tools.build:gradle:3.1.1'
1612
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.4'
1713
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1'
1814
}

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
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-4.1-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip

0 commit comments

Comments
 (0)