-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Builder pattern updates, javadocs, new package name, updated README, …
- Loading branch information
1 parent
3512ea1
commit bdb6ea7
Showing
52 changed files
with
8,087 additions
and
1,042 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
language: android | ||
android: | ||
components: | ||
- build-tools-24.0.3 | ||
- android-24 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,10 @@ | ||
apply plugin: 'com.android.library' | ||
apply plugin: 'jacoco' | ||
apply plugin: 'com.getkeepsafe.dexcount' | ||
apply plugin: "com.github.dcendents.android-maven" | ||
|
||
group = 'com.isupatches' | ||
version = '1.0.4' | ||
|
||
def coverageSourceDirs = [ | ||
'../app/src/main/java' | ||
|
@@ -59,8 +63,8 @@ android { | |
defaultConfig { | ||
minSdkVersion 16 | ||
targetSdkVersion 24 | ||
versionCode 4 | ||
versionName "1.0.3" | ||
versionCode 5 | ||
versionName version | ||
testInstrumentationRunner 'android.support.test.runner.AndroidJUnitRunner' | ||
} | ||
|
||
|
@@ -89,4 +93,59 @@ dependencies { | |
androidTestCompile 'com.google.dexmaker:dexmaker-mockito:1.2' | ||
|
||
testCompile 'junit:junit:4.12' | ||
} | ||
} | ||
|
||
install { | ||
repositories.mavenInstaller { | ||
pom { | ||
project { | ||
artifactId 'wisefy' | ||
packaging 'aar' | ||
|
||
name 'WiseFy' | ||
url 'https://github.com/isuPatches/WiseFy' | ||
|
||
licenses { | ||
license { | ||
name 'The Apache Software License, Version 2.0' | ||
url 'http://www.apache.org/licenses/LICENSE-2.0.txt' | ||
} | ||
} | ||
developers { | ||
developer { | ||
id 'isuPatches' | ||
name 'Sarah Klinefelter' | ||
email '[email protected]' | ||
} | ||
} | ||
scm { | ||
connection 'https://github.com/isuPatches/WiseFy.git' | ||
developerConnection 'https://github.com/isuPatches/WiseFy.git' | ||
url 'https://github.com/isuPatches/WiseFy' | ||
} | ||
} | ||
} | ||
} | ||
} | ||
|
||
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)) | ||
destinationDir = file("../javadoc/") | ||
failOnError false | ||
} | ||
|
||
task javadocJar(type: Jar, dependsOn: javadoc) { | ||
classifier = 'javadoc' | ||
from javadoc.destinationDir | ||
} | ||
|
||
artifacts { | ||
archives javadocJar | ||
archives sourcesJar | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,4 +14,4 @@ | |
|
||
-verbose | ||
|
||
-keep class com.metova.** { *; } | ||
-keep class com.isupatches.** { *; } |
Oops, something went wrong.