summaryrefslogtreecommitdiff
path: root/android/testData/snapshots/projects/lightSyncReference/app/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'android/testData/snapshots/projects/lightSyncReference/app/build.gradle')
-rw-r--r--android/testData/snapshots/projects/lightSyncReference/app/build.gradle36
1 files changed, 36 insertions, 0 deletions
diff --git a/android/testData/snapshots/projects/lightSyncReference/app/build.gradle b/android/testData/snapshots/projects/lightSyncReference/app/build.gradle
new file mode 100644
index 00000000000..4331fd696f8
--- /dev/null
+++ b/android/testData/snapshots/projects/lightSyncReference/app/build.gradle
@@ -0,0 +1,36 @@
+plugins {
+ id 'com.android.application'
+}
+
+android {
+ namespace 'com.example.skeleton'
+ compileSdk 32
+
+ defaultConfig {
+ applicationId "com.example.skeleton"
+ minSdk 21
+ targetSdk 32
+ versionCode 1
+ versionName "1.0"
+
+ testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
+ }
+
+ buildTypes {
+ release {
+ minifyEnabled false
+ proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
+ }
+ }
+ compileOptions {
+ sourceCompatibility JavaVersion.VERSION_1_8
+ targetCompatibility JavaVersion.VERSION_1_8
+ }
+}
+
+dependencies {
+ implementation project(path: ':androidlibrary')
+ testImplementation 'junit:junit:4.12'
+ androidTestImplementation 'androidx.test.ext:junit:1.1.1'
+ androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
+}