Skip to content

Commit

Permalink
Revert "update data"
Browse files Browse the repository at this point in the history
This reverts commit 43ac307.
  • Loading branch information
秋逸 committed Oct 26, 2016
1 parent 00960d7 commit 890fc14
Show file tree
Hide file tree
Showing 62 changed files with 80 additions and 20,287 deletions.
2 changes: 1 addition & 1 deletion .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

88 changes: 67 additions & 21 deletions VonTools/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
apply plugin: 'com.android.library'
apply plugin: 'com.github.dcendents.android-maven'
apply plugin: 'com.jfrog.bintray'

android {
compileSdkVersion 24
Expand Down Expand Up @@ -30,26 +32,70 @@ dependencies {
testCompile 'junit:junit:4.12'
}

ext {
bintrayRepo = 'maven'
bintrayName = 'vontools'

publishedGroupId = 'com.vondear.vontools'
libraryName = 'VonTools'
artifact = 'vontools'

libraryDescription = 'A Tools on Android'

siteUrl = 'https://github.com/vondear/VonTools'
gitUrl = 'https://github.com/vondear/VonTools.git'

libraryVersion = '1.0.0'

developerId = 'vondear'
developerName = 'vondear'
developerEmail = '[email protected]'
def siteUrl = 'https://github.com/vondear/VonTools'
def gitUrl = 'https://github.com/vondear/VonTools.git'
group = "com.vondear.vontools" // Maven Group ID for the artifact,一般填你唯一的包名
install{
repositories.mavenInstaller {
// This generates POM.xml with proper parameters
pom {
project {
packaging 'aar'
// Add your description here
name 'Android Tools' //项目的描述 你可以多写一点
url siteUrl
// Set your license
licenses {
license {
name 'The Apache Software License, Version 2.0'
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
}
}
developers {
developer {
id 'von' //填写的一些基本信息
name 'vondear'
email '[email protected]'
}
}
scm {
connection gitUrl
developerConnection gitUrl
url siteUrl
}
}
}
}
}

licenseName = 'The Apache Software License, Version 2.0'
licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
allLicenses = ["Apache-2.0"]
task sourcesJar(type: Jar) {
from android.sourceSets.main.java.srcDirs
classifier = 'sources'
}
/*task javadoc(type: Javadoc) {
source = android.sourceSets.main.java.srcDirs
classpath += project.files(android.getBootClasspath().join(File.pathSeparator))
}
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = 'javadoc'
from javadoc.destinationDir
}*/
artifacts {
//archives javadocJar
archives sourcesJar
}
Properties properties = new Properties()
properties.load(project.rootProject.file('local.properties').newDataInputStream())
bintray {
user = properties.getProperty("bintray.user")
key = properties.getProperty("bintray.apikey")
configurations = ['archives']
pkg {
repo = "maven"
name = "VonTool" //发布到JCenter上的项目名字
websiteUrl = siteUrl
vcsUrl = gitUrl
licenses = ["Apache-2.0"]
publish = true
}
}

This file was deleted.

2 changes: 1 addition & 1 deletion VonTools/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.vondear.vontool">
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.vondear.vontools">

<application android:allowBackup="true" android:label="@string/app_name"
android:supportsRtl="true">
Expand Down
102 changes: 0 additions & 102 deletions VonTools/src/main/java/com/vondear/vontool/utils/VonActivityUtils.java

This file was deleted.

Loading

0 comments on commit 890fc14

Please sign in to comment.