mirror of
				https://github.com/owncloud/android-library.git
				synced 2025-11-04 12:28:25 +00:00 
			
		
		
		
	Bumps [robolectric](https://github.com/robolectric/robolectric) from 4.9 to 4.9.1. - [Release notes](https://github.com/robolectric/robolectric/releases) - [Commits](https://github.com/robolectric/robolectric/compare/robolectric-4.9...robolectric-4.9.1) --- updated-dependencies: - dependency-name: org.robolectric:robolectric dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
		
			
				
	
	
		
			44 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Groovy
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Groovy
		
	
	
	
	
	
apply plugin: 'com.android.library'
 | 
						|
apply plugin: 'kotlin-android'
 | 
						|
apply plugin: 'kotlin-kapt'
 | 
						|
apply plugin: 'kotlin-parcelize'
 | 
						|
 | 
						|
dependencies {
 | 
						|
    api 'com.squareup.okhttp3:okhttp:4.6.0'
 | 
						|
    implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$orgJetbrainsKotlin"
 | 
						|
    api 'com.gitlab.ownclouders:dav4android:oc_support_2.1.5'
 | 
						|
    api 'com.github.AppDevNext.Logcat:LogcatCore:2.2.2'
 | 
						|
 | 
						|
    // Moshi
 | 
						|
    implementation("com.squareup.moshi:moshi-kotlin:$comSquareupMoshi") {
 | 
						|
        exclude module: "kotlin-reflect"
 | 
						|
    }
 | 
						|
    implementation 'org.apache.commons:commons-lang3:3.12.0'
 | 
						|
    kapt "com.squareup.moshi:moshi-kotlin-codegen:$comSquareupMoshi"
 | 
						|
 | 
						|
    testImplementation 'junit:junit:4.13.2'
 | 
						|
    testImplementation 'org.robolectric:robolectric:4.9.1'
 | 
						|
    debugImplementation 'com.facebook.stetho:stetho-okhttp3:1.6.0'
 | 
						|
}
 | 
						|
 | 
						|
android {
 | 
						|
    compileSdkVersion 33
 | 
						|
 | 
						|
    defaultConfig {
 | 
						|
        minSdkVersion 21
 | 
						|
        targetSdkVersion 31
 | 
						|
    }
 | 
						|
 | 
						|
    lint {
 | 
						|
        abortOnError false
 | 
						|
        ignoreWarnings true
 | 
						|
    }
 | 
						|
 | 
						|
    testOptions {
 | 
						|
        unitTests {
 | 
						|
            includeAndroidResources = true
 | 
						|
        }
 | 
						|
    }
 | 
						|
    namespace 'com.owncloud.android.lib'
 | 
						|
}
 |