File tree Expand file tree Collapse file tree 1 file changed +34
-0
lines changed
Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Original file line number Diff line number Diff line change 1+ name : AVD Skin Conversion
2+
3+ on :
4+ push :
5+ pull_request :
6+
7+ jobs :
8+ convert :
9+ runs-on : ubuntu-latest
10+ steps :
11+ - name : Checkout repository
12+ uses : actions/checkout@v4
13+
14+ - name : Set up Java 21
15+ uses : actions/setup-java@v4
16+ with :
17+ distribution : temurin
18+ java-version : ' 21'
19+
20+ - name : Download sample AVD skin
21+ run : |
22+ curl -L -o skins.zip https://github.com/google/android-emulator-skins/archive/refs/heads/main.zip
23+ mkdir -p skins
24+ unzip -q skins.zip "android-emulator-skins-main/Pixel_4/*" -d skins
25+
26+ - name : Convert AVD skin to Codename One skin
27+ run : |
28+ mkdir -p build
29+ java AvdSkinToCodenameOneSkin.java skins/android-emulator-skins-main/Pixel_4 build/Pixel_4.skin
30+
31+ - name : Validate Codename One skin archive
32+ run : |
33+ test -f build/Pixel_4.skin
34+ unzip -l build/Pixel_4.skin
You can’t perform that action at this time.
0 commit comments