Fixes build.gradle to generate safeargs directions for navigation.
This commit is contained in:
		| @@ -6,8 +6,11 @@ if (propertiesFile.exists()) { | ||||
| def appCenterLocalSecret = properties.getProperty('appCenter.localSecret') | ||||
| def appCenterEnvSecret = System.getenv('APPCENTER_SECRET') | ||||
| def appCenterSecret = appCenterLocalSecret != null ? appCenterLocalSecret : appCenterEnvSecret != null ? appCenterEnvSecret : "" | ||||
| def appCenterSdkVersion = '3.3.0' | ||||
| def nav_version = "2.3.0" | ||||
|  | ||||
| apply plugin: 'com.android.application' | ||||
| apply plugin: "androidx.navigation.safeargs" | ||||
|  | ||||
| android { | ||||
|     compileSdkVersion 29 | ||||
| @@ -43,7 +46,6 @@ android { | ||||
| } | ||||
|  | ||||
| dependencies { | ||||
|     def appCenterSdkVersion = '3.3.0' | ||||
|     implementation "com.microsoft.appcenter:appcenter-analytics:${appCenterSdkVersion}" | ||||
|     implementation "com.microsoft.appcenter:appcenter-crashes:${appCenterSdkVersion}" | ||||
|  | ||||
| @@ -51,8 +53,8 @@ dependencies { | ||||
|     implementation 'androidx.appcompat:appcompat:1.2.0' | ||||
|     implementation 'com.google.android.material:material:1.2.0' | ||||
|     implementation 'androidx.constraintlayout:constraintlayout:2.0.1' | ||||
|     implementation 'androidx.navigation:navigation-fragment:2.3.0' | ||||
|     implementation 'androidx.navigation:navigation-ui:2.3.0' | ||||
|     implementation "androidx.navigation:navigation-fragment:$nav_version" | ||||
|     implementation "androidx.navigation:navigation-ui:$nav_version" | ||||
|     implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0' | ||||
|     testImplementation 'junit:junit:4.12' | ||||
|     androidTestImplementation 'androidx.test.ext:junit:1.1.2' | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Tom Hicks
						Tom Hicks