Skip to content

Commit 3353430

Browse files
committed
Updated the gradle wrapper and prepared everything for maven central sync
1 parent 0f058eb commit 3353430

File tree

6 files changed

+31
-29
lines changed

6 files changed

+31
-29
lines changed

.gitignore

+28-21
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,36 @@
1-
# built application files
2-
*.apk
3-
*.ap_
1+
#Android generated
2+
bin
3+
gen
4+
gen*
45

5-
# files for the dex VM
6-
*.dex
6+
#Eclipse
7+
.project
8+
.classpath
9+
.settings
710

8-
# Java class files
9-
*.class
11+
#IntelliJ IDEA
12+
.idea
13+
*.iml
14+
*.ipr
15+
*.iws
16+
out
1017

11-
# generated files
12-
bin/
13-
gen/
18+
#Maven
19+
target
20+
release.properties
21+
pom.xml.*
1422

15-
# Local configuration file (sdk path, etc)
23+
#Ant
24+
build.xml
1625
local.properties
26+
proguard.cfg
1727

18-
# Eclipse project files
19-
.classpath
20-
.project
28+
#Gradle
29+
.gradle
30+
build
2131

22-
# IntelliJ
23-
.idea/
24-
*.iml
32+
#OSX
33+
.DS_Store
2534

26-
# Maven
27-
target/
28-
build/
29-
.gradle/
35+
#Personal Files
36+
signing.properties

demo/build.gradle

-6
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
11
apply plugin: 'android'
22

3-
buildscript {
4-
dependencies {
5-
classpath 'com.android.tools.build:gradle:0.9.+'
6-
}
7-
}
8-
93
android {
104
compileSdkVersion 19
115
buildToolsVersion "19.0.3"

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION_NAME=1.0.1-SNAPSHOT
1+
VERSION_NAME=1.0.1
22
VERSION_CODE=2
33
GROUP=com.sothree.slidinguppanel
44

gradle/wrapper/gradle-wrapper.jar

-612 Bytes
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#Wed Jan 08 12:24:31 PST 2014
1+
#Wed Apr 10 15:27:10 PDT 2013
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME

library/build.gradle

+1
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,4 @@ android {
3535
}
3636
}
3737

38+
apply from: '../maven_push.gradle'

0 commit comments

Comments
 (0)