Home | History | Annotate | Download | only in styles
      1 #!/bin/bash
      2 
      3 set -e
      4 
      5 PATH_TO_FRAMEWORK_RES=${ANDROID_BUILD_TOP}/prebuilts/sdk/current/public/android.jar
      6 
      7 aapt2 compile -o compiled.flata --dir res
      8 aapt2 link -o styles.apk --manifest AndroidManifest.xml -I $PATH_TO_FRAMEWORK_RES compiled.flata
      9