Skip to content

Commit 3d688f1

Browse files
committed
Added support for uploading to jcenter
1 parent c0b0db1 commit 3d688f1

File tree

12 files changed

+36
-179
lines changed

12 files changed

+36
-179
lines changed

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,9 @@
77
/build
88
/captures
99
.externalNativeBuild
10+
.idea
11+
app/libs/
12+
app/src/main/java/
13+
app/src/main/res/drawable/
14+
private_key_sender.asc
15+
public_key_sender.asc

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

Lines changed: 0 additions & 6 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 & 59 deletions
This file was deleted.

.idea/modules.xml

Lines changed: 0 additions & 10 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.

build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ buildscript {
66
}
77
dependencies {
88
classpath 'com.android.tools.build:gradle:2.2.3'
9-
9+
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.4'
10+
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1'
1011
// NOTE: Do not place your application dependencies here; they belong
1112
// in the individual module build.gradle files
1213
}

fadingtextview/.gitignore

Lines changed: 1 addition & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1 @@
1-
# Built application files
2-
*.apk
3-
*.ap_
4-
5-
# Files for the ART/Dalvik VM
6-
*.dex
7-
8-
# Java class files
9-
*.class
10-
11-
# Generated files
12-
bin/
13-
gen/
14-
out/
15-
16-
# Gradle files
17-
.gradle/
18-
build/
19-
20-
# Local configuration file (sdk path, etc)
21-
local.properties
22-
23-
# Proguard folder generated by Eclipse
24-
proguard/
25-
26-
# Log Files
27-
*.log
28-
29-
# Android Studio Navigation editor temp files
30-
.navigation/
31-
32-
# Android Studio captures folder
33-
captures/
34-
35-
# Intellij
36-
*.iml
37-
.idea/workspace.xml
38-
39-
# Keystore files
40-
*.jks
1+
/build

fadingtextview/build.gradle

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,29 @@
11
apply plugin: 'com.android.library'
22

3+
ext {
4+
bintrayRepo = 'maven'
5+
bintrayName = 'fadingtextview'
6+
7+
publishedGroupId = 'com.tomer'
8+
libraryName = 'fadingtextview'
9+
artifact = 'fadingtextview'
10+
11+
libraryDescription = 'A textview that changes its content automatically every few seconds Edit'
12+
13+
siteUrl = 'https://github.com/rosenpin/FadingTextView'
14+
gitUrl = 'https://github.com/rosenpin/FadingTextView.git'
15+
16+
libraryVersion = '1.0'
17+
18+
developerId = 'rosenpin'
19+
developerName = 'Tomer Rosenfeld'
20+
developerEmail = '[email protected]'
21+
22+
licenseName = 'The Apache Software License, Version 2.0'
23+
licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
24+
allLicenses = ["Apache-2.0"]
25+
}
26+
327
android {
428
compileSdkVersion 25
529
buildToolsVersion "25.0.1"
@@ -23,7 +47,9 @@ android {
2347

2448
dependencies {
2549
compile fileTree(dir: 'libs', include: ['*.jar'])
26-
compile 'com.jakewharton:butterknife:8.4.0'
2750
compile 'com.android.support:appcompat-v7:25.1.0'
2851
testCompile 'junit:junit:4.12'
2952
}
53+
54+
apply from: 'https://raw.githubusercontent.com/nuuneoi/JCenter/master/installv1.gradle'
55+
apply from: 'https://raw.githubusercontent.com/nuuneoi/JCenter/master/bintrayv1.gradle'

0 commit comments

Comments
 (0)