-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathbuildAll.sh
48 lines (46 loc) · 1.09 KB
/
buildAll.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#!/bin/bash
export GRADLE_OPTS="-Dorg.gradle.daemon=false -Dorg.gradle.parallel=false -Dorg.gradle.jvmargs='-Xmx4g'"
echo "[Building ChromecastDemo]"
cd ChromecastDemo
./gradlew assembleRelease
cd ..
echo "[Building ChromecastFragmentDemo]"
cd ChromecastFragmentDemo
./gradlew assembleRelease
cd ..
echo "[Building conviva-integration]"
cd "conviva-integration"
./gradlew assembleRelease
cd ..
echo "[Building DemoNativeControls]"
cd DemoNativeControls
./gradlew assembleRelease
cd ..
echo "[Building FullBackgroundAudio]"
cd FullBackgroundAudio
./gradlew assembleRelease
cd ..
echo "[Building GoogleDAIDemo]"
cd GoogleDAIDemo
./gradlew assembleRelease
cd ..
echo "[Building listview-fullscreen]"
cd "listview-fullscreen"
./gradlew assembleRelease
cd ..
echo "[Building LocalAssetPlayback]"
cd LocalAssetPlayback
./gradlew assembleRelease
cd ..
echo "[Building movable-player]"
cd "movable-player"
./gradlew assembleRelease
cd ..
echo "[Building notifications-demo]"
cd "notifications-demo"
./gradlew assembleRelease
cd ..
echo "[Building RecyclerViewDemo]"
cd "RecyclerViewDemo"
./gradlew assembleRelease
cd ..