mirror of
https://github.com/bitfireAT/davx5-ose.git
synced 2025-12-23 23:17:50 -05:00
Scripts etc.
This commit is contained in:
@@ -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(
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
org.gradle.daemon=true
|
||||
org.gradle.parallel=true
|
||||
org.gradle.jvmargs=-Xmx4g
|
||||
|
||||
|
||||
9
scripts/copy-compiled.sh
Executable file
9
scripts/copy-compiled.sh
Executable 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/
|
||||
@@ -1,6 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
SOURCE_DIR=~/tmp/davx5
|
||||
TARGET_DIR=`dirname $0`/../app/target
|
||||
|
||||
rsync -arvt $SOURCE_DIR/ $TARGET_DIR/
|
||||
Reference in New Issue
Block a user