mirror of
https://github.com/anyproto/anytype-kotlin.git
synced 2025-06-08 05:47:05 +09:00
17 lines
395 B
Makefile
17 lines
395 B
Makefile
compile_android_test_sources:
|
|
./gradlew compileDebugAndroidTestSources -q
|
|
|
|
test_debug_all:
|
|
./gradlew testDebugAll -q
|
|
|
|
enable_dated_version_name:
|
|
./gradlew -q :app:enableDatedVersionName
|
|
|
|
distribute_debug:
|
|
./gradlew bundleDebug appDistributionUploadDebug
|
|
|
|
enable_analytics_for_debug:
|
|
./gradlew :analytics:enableAnalyticsForDebugBuilds
|
|
|
|
pr_check: compile_android_test_sources test_debug_all
|
|
|