Scripts etc.

This commit is contained in:
Ricki Hirner
2020-08-31 12:28:26 +02:00
parent 838855b9e8
commit ed38d38f20
4 changed files with 11 additions and 6 deletions

View File

@@ -490,6 +490,7 @@ class DebugInfoActivity: AppCompatActivity() {
for (authority in arrayOf(
context.getString(R.string.address_books_authority),
CalendarContract.AUTHORITY,
ContactsContract.AUTHORITY, // Should never be set! Main accounts shall not contain contacts.
TaskProvider.ProviderName.OpenTasks.authority
))
table.addLine(

View File

@@ -1,3 +1,4 @@
org.gradle.daemon=true
org.gradle.parallel=true
org.gradle.jvmargs=-Xmx4g

9
scripts/copy-compiled.sh Executable file
View File

@@ -0,0 +1,9 @@
#!/bin/sh
SOURCE_DIR=~/tmp/davx5
BASE_DIR=`dirname $0`/../app
MAPPING_DIR=$BASE_DIR/build/outputs/mapping
TARGET_DIR=$BASE_DIR/target
rsync -arvt $SOURCE_DIR/ $TARGET_DIR/
rsync -arvt $MAPPING_DIR/ $TARGET_DIR/latest-mapping/

View File

@@ -1,6 +0,0 @@
#!/bin/sh
SOURCE_DIR=~/tmp/davx5
TARGET_DIR=`dirname $0`/../app/target
rsync -arvt $SOURCE_DIR/ $TARGET_DIR/