- Install Xcode from the Mac App Store
- Install theos. You don't need to install the SDK
- Install theos-jailed. You don't need ios-deploy
- Get a decrypted ipa of the app you want
- Change the .ipa file extension to .zip & unzip it
on: | |
push: | |
branches: | |
- master | |
name: Build and Release Apps | |
jobs: | |
build: | |
name: Build Apps | |
runs-on: macos-latest |
FROM google/dart AS dart-runtime | |
WORKDIR /app | |
ADD pubspec.* /app/ | |
RUN pub get | |
ADD bin /app/bin/ | |
RUN pub get --offline | |
RUN dart2native /app/bin/server.dart -o /app/server |
<uses-feature android:name="android.software.leanback" android:required="false" />
<uses-feature android:name="android.hardware.touchscreen" android:required="false" />
name: Detox | |
on: [push] | |
jobs: | |
build: | |
runs-on: macOS-latest | |
timeout-minutes: 15 | |
env: |
https://code.google.com/p/android/issues/detail?id=32696#c5 | |
If you have a certificate that is not | |
trusted by Android, when you add it, it goes in the personal cert store. | |
When you add a cert in this personal cert store, the system requires a | |
higher security level to unlock the device. But if you manage to add your | |
cert to the system store then you don't have this requirement. Obviously, | |
root is required to add a certificate to the system store, but it is quiet | |
easy. |