123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- apply plugin: 'com.android.library'
- apply from: '../prepare-robolectric.gradle'
-
- android {
- compileSdkVersion 25
- buildToolsVersion '27.0.3'
-
- defaultConfig {
- minSdkVersion 19
- targetSdkVersion 25
- versionCode 1
- versionName "1.0"
- }
- buildTypes {
- release {
- minifyEnabled false
- }
- debug {
- minifyEnabled false
- }
- }
- lintOptions {
- abortOnError false
- }
-
- testOptions {
- unitTests.all { t ->
- reports {
- html.enabled true
- }
- testLogging {
- events "passed", "skipped", "failed", "standardOut", "standardError"
- }
- afterSuite { desc, result ->
- if (!desc.parent) { // will match the outermost suite
- def output = " ${result.resultType} (${result.successfulTestCount} successes, ${result.failedTestCount} failures, ${result.skippedTestCount} skipped) "
- def repeatLength = output.length()
- println '\n\n' + ('-' * repeatLength) + '\n' + output + '\n' + ('-' * repeatLength) + '\n'
-
- println "see report at file://${t.reports.html.destination}/index.html"
- }
- }
- }
- }
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_8
- targetCompatibility JavaVersion.VERSION_1_8
- }
- }
-
- allprojects { p ->
- p.afterEvaluate {
- p.android.compileOptions.sourceCompatibility JavaVersion.VERSION_1_8
- p.android.compileOptions.targetCompatibility JavaVersion.VERSION_1_8
- }
- }
-
- dependencies {
- implementation fileTree(include: ['*.jar'], dir: 'libs')
- implementation 'com.android.support:design:25.4.0'
- implementation 'com.android.support:appcompat-v7:25.4.0'
- implementation 'com.android.support:support-v4:25.4.0'
- implementation 'com.aurelhubert:ahbottomnavigation:2.1.0'
- implementation 'com.github.clans:fab:1.6.4'
-
-
- // node_modules
- //noinspection GradleDynamicVersion
- implementation 'com.facebook.react:react-native:+'
-
- // tests
- testImplementation 'junit:junit:4.12'
- testImplementation 'org.robolectric:robolectric:3.5.1'
- testImplementation 'org.assertj:assertj-core:3.8.0'
- testImplementation 'com.squareup.assertj:assertj-android:1.1.1'
- testImplementation 'org.mockito:mockito-core:2.13.0'
- }
|