Files
flipper/android/sample/build.gradle
Pascal Hartig a7fd546f0e Add basic integration test
Summary:
Just a quick startup test that can save you the time of manually
opening the app.

I don't have any plans of hooking this up in Circle, but it's
still kinda useful to have.

Reviewed By: jknoxville

Differential Revision: D12901590

fbshipit-source-id: a16a1814574d9f27770dcf98c6b238517c589930
2018-11-02 07:09:51 -07:00

43 lines
1011 B
Groovy

apply plugin: 'com.android.application'
android {
compileSdkVersion rootProject.compileSdkVersion
buildToolsVersion rootProject.buildToolsVersion
defaultConfig {
minSdkVersion rootProject.minSdkVersion
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
applicationId 'com.facebook.flipper.sample'
}
lintOptions {
abortOnError false
}
sourceSets {
main {
manifest.srcFile './AndroidManifest.xml'
}
}
}
dependencies {
// Android Support Library
implementation deps.supportAppCompat
// Litho
implementation deps.lithoCore
implementation deps.lithoWidget
implementation deps.lithoAnnotations
annotationProcessor deps.lithoProcessor
// Third-party
implementation deps.soloader
implementation deps.okhttp3
// Integration test
androidTestImplementation deps.testCore
androidTestImplementation deps.testRules
implementation project(':android')
}