/
githubmirror
/
fastlane
Обзор
Документация
Войти
/
githubmirror
/
fastlane
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
screengrab/example/build.gradle
41 строка
1 KB
penn5
[screengrab] general improvements, removed deprecated and un-needed code (#18003)
28 июн 2021, 22:30
Не верифицирован
28 июн 2021, 22:30
ba8be11
Код
Авторство
О чём код?
apply plugin: 'com.android.application' android { compileSdkVersion 30 defaultConfig { applicationId "tools.fastlane.localetester" minSdkVersion 18 targetSdkVersion 30 versionCode 1 versionName "1.0" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } buildTypes { release { minifyEnabled false } } lintOptions { checkReleaseBuilds false // Or, if you prefer, you can continue to check for errors in release builds, // but continue the build even when errors are found: abortOnError false } } dependencies { implementation 'com.google.android.material:material:1.3.0' testImplementation 'junit:junit:4.13.2' androidTestImplementation 'androidx.test:runner:1.3.0' androidTestImplementation 'androidx.test:rules:1.3.0' androidTestImplementation 'androidx.test.ext:junit:1.1.2' androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0' androidTestImplementation 'org.hamcrest:hamcrest-library:1.3' androidTestImplementation project(':screengrab-lib') }