-
Notifications
You must be signed in to change notification settings - Fork 294
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
publish 1.1.2, support 'wrap_content' on item view.
- Loading branch information
Showing
5 changed files
with
13 additions
and
16 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
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ apply plugin: 'com.android.library' | |
apply plugin: 'com.github.dcendents.android-maven' | ||
apply plugin: 'com.jfrog.bintray' | ||
|
||
version = "1.1.1" | ||
version = "1.1.2" | ||
android { | ||
compileSdkVersion 23 | ||
buildToolsVersion "23.0.1" | ||
|
@@ -43,7 +43,7 @@ install { | |
} | ||
developers { | ||
developer { | ||
id 'misakuo' //填写开发者基本信息 | ||
id 'misakuo' //开发者基本信息 | ||
name 'moxun' | ||
email '[email protected]' | ||
} | ||
|
@@ -77,10 +77,10 @@ artifacts { | |
Properties properties = new Properties() | ||
File file = project.rootProject.file('local.properties') | ||
if(file != null && file.exists()) { | ||
println("Building on local machine......") | ||
println("\nBuilding on local machine......") | ||
properties.load(file.newDataInputStream()) | ||
} else { | ||
println("Building on Travis......") | ||
println("\nBuilding on Travis......") | ||
properties.put("bintray.user",System.getenv("USER")) | ||
properties.put("bintray.apikey",System.getenv("TOKEN")) | ||
} | ||
|
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