Vibration Adobe Air Native Extension for iOS 9.0+ and Android 19+.
cd into /example and run:
- OSX (Terminal)
bash get_android_dependencies.sh
- Windows Powershell
PS get_android_dependencies.ps1
<extensions>
<extensionID>com.tuarua.frekotlin</extensionID>
<extensionID>com.tuarua.VibrationANE</extensionID>
...
</extensions>
You will also need to include the following in your app manifest. Update accordingly.
<manifest>
<uses-permission android:name="android.permission.VIBRATE"/>
</manifest>
N.B. You must use a Mac to build an iOS app using this ANE. Windows is NOT supported.
From the command line cd into /example and run:
bash get_ios_dependencies.sh
This folder, ios_dependencies/device/Frameworks, must be packaged as part of your app when creating the ipa. How this is done will depend on the IDE you are using. After the ipa is created unzip it and confirm there is a "Frameworks" folder in the root of the .app package.
You will need:
- IntelliJ IDEA / Flash Builder
- AIR 29
- Android Studio 3 if you wish to edit the Android source
- Xcode 9.3
- Xcode 9.1 for iOS Simulator
- wget on OSX
- Powershell on Windows