mirror of
https://github.com/moparisthebest/open-keychain
synced 2024-11-05 16:55:05 -05:00
718acbf954
this requires a more up to date version of gradle-android-test-plugin than is currently in the repositories. it must be added to the local maven repo using ./install-custom-gradle-test-plugin.sh before compiling.
15 lines
352 B
Bash
Executable File
15 lines
352 B
Bash
Executable File
#!/bin/bash
|
|
|
|
mkdir temp
|
|
cd temp
|
|
|
|
git clone https://github.com/nenick/gradle-android-test-plugin.git
|
|
cd gradle-android-test-plugin
|
|
|
|
echo "rootProject.name = 'gradle-android-test-plugin-parent'" > settings.gradle
|
|
echo "include ':gradle-android-test-plugin'" >> settings.gradle
|
|
|
|
./gradlew :gradle-android-test-plugin:install
|
|
|
|
cd ..
|
|
cd .. |