-
Notifications
You must be signed in to change notification settings - Fork 163
Home
Mihail edited this page Aug 26, 2016
·
7 revisions
Building all samples
There is a gradle project at the repo's root. Since the projects are independent gradle's parallel module builds are enabled; speeds up the process nicely.
./gradlew assembleDebug would build all the samples we have ./gradlew installDebug would install all the samples to the connected phone
There is no gradle task for removing all samples from the phone unfortunately but while in the GearVRf-Demos directory you can run this:
grep -r package --include="AndroidManifest.xml"|grep -oE '"org.gearvrf.*'|xargs -n 1 adb uninstall
. Should remove all but the accessibility sample.