Merge pull request #710 from betheg/as
update android gradle plugin to 0.14.4
This commit is contained in:
		
						commit
						16e3c07cf1
					
				
							
								
								
									
										21
									
								
								build.gradle
									
									
									
									
									
								
							
							
						
						
									
										21
									
								
								build.gradle
									
									
									
									
									
								
							| @ -6,7 +6,7 @@ buildscript { | |||||||
| 		mavenCentral() | 		mavenCentral() | ||||||
| 	} | 	} | ||||||
| 	dependencies { | 	dependencies { | ||||||
| 		classpath 'com.android.tools.build:gradle:0.12.2' | 		classpath 'com.android.tools.build:gradle:1.0.0' | ||||||
| 	} | 	} | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| @ -81,18 +81,13 @@ android { | |||||||
| 		buildTypes.release.signingConfig = null | 		buildTypes.release.signingConfig = null | ||||||
| 	} | 	} | ||||||
| 
 | 
 | ||||||
| 	buildTypes { | 	applicationVariants.all { variant -> | ||||||
| 		applicationVariants.all { variant -> | 		if (variant.name.equals('release')) { | ||||||
| 			def fileName = variant.packageApplication.outputFile.name.replace(".apk", | 			variant.outputs.each { output -> | ||||||
| 					"-" + defaultConfig.versionName + ".apk") | 				output.zipAlign.outputFile = new File(output.outputFile.parent, rootProject.name + "-${variant.versionName}.apk") | ||||||
| 				variant.packageApplication.outputFile = new | 				output.packageApplication.outputFile = new File(output.outputFile.parent, output.packageApplication.outputFile.name | ||||||
| 				File(variant.packageApplication.outputFile.parent, fileName) | 					.replace(".apk", "-${variant.versionName}.apk")) | ||||||
| 				if (variant.zipAlign) { | 			} | ||||||
| 					if (variant.name.equals('release')) { |  | ||||||
| 						variant.outputFile = new File(variant.outputFile.parent, |  | ||||||
| 								rootProject.name + "-" + defaultConfig.versionName + ".apk") |  | ||||||
| 					} |  | ||||||
| 				} |  | ||||||
| 		} | 		} | ||||||
| 	} | 	} | ||||||
| 
 | 
 | ||||||
|  | |||||||
							
								
								
									
										4
									
								
								gradle/wrapper/gradle-wrapper.properties
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										4
									
								
								gradle/wrapper/gradle-wrapper.properties
									
									
									
									
										vendored
									
									
								
							| @ -1,6 +1,6 @@ | |||||||
| #Wed Apr 10 15:27:10 PDT 2013 | #Sat Nov 22 17:47:57 CET 2014 | ||||||
| distributionBase=GRADLE_USER_HOME | distributionBase=GRADLE_USER_HOME | ||||||
| distributionPath=wrapper/dists | distributionPath=wrapper/dists | ||||||
| zipStoreBase=GRADLE_USER_HOME | zipStoreBase=GRADLE_USER_HOME | ||||||
| zipStorePath=wrapper/dists | zipStorePath=wrapper/dists | ||||||
| distributionUrl=http\://services.gradle.org/distributions/gradle-1.12-all.zip | distributionUrl=https\://services.gradle.org/distributions/gradle-2.2.1-all.zip | ||||||
|  | |||||||
| @ -19,7 +19,10 @@ group = 'de.measite.minidns' | |||||||
| description = "A minimal DNS client library with support for A, AAAA, NS and SRV records" | description = "A minimal DNS client library with support for A, AAAA, NS and SRV records" | ||||||
| sourceCompatibility = 1.7 | sourceCompatibility = 1.7 | ||||||
| version = 'git tag --points-at HEAD'.execute().text.trim() | version = 'git tag --points-at HEAD'.execute().text.trim() | ||||||
| isSNAPSHOT = 'git rev-parse --abbrev-ref HEAD'.execute().text.trim() == 'master' | 
 | ||||||
|  | ext { | ||||||
|  | 	isSNAPSHOT = 'git rev-parse --abbrev-ref HEAD'.execute().text.trim() == 'master' | ||||||
|  | } | ||||||
| 
 | 
 | ||||||
| if (isSNAPSHOT) { | if (isSNAPSHOT) { | ||||||
|   version = version + '-SNAPSHOT' |   version = version + '-SNAPSHOT' | ||||||
| @ -74,4 +77,4 @@ modifyPom { | |||||||
| } | } | ||||||
| 
 | 
 | ||||||
| dependencies { | dependencies { | ||||||
| } | } | ||||||
|  | |||||||
		Loading…
	
		Reference in New Issue
	
	Block a user
	 Daniel Gultsch
						Daniel Gultsch