Little help with AIR SDK 50.2 Mobile Device Debug (Android) #736
Replies: 6 comments 2 replies
-
UpdateI have a feeling the solution is here... #579 👀🥲 |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
|
Now wondering if it's just the JDK version issue... 🤔 |
Beta Was this translation helpful? Give feedback.
-
UpdateUnlike with #579, this time I actually generated the Anyone knows what's the compatible JDK version for AIR 50.2? Edit: Didn't work with JDK 17 either. |
Beta Was this translation helpful? Give feedback.
-
|
https://help.adobe.com/en_US/air/build/WSBE9908A0-8E3A-4329-8ABD-12F2A19AB5E9.html But my descriptor is taken literally out of the AIR SDK 50.2 folder, checked XML online for errors and NO ERRORS. |
Beta Was this translation helpful? Give feedback.
-
SolvedFirst descriptor template I used from the AIR 50.2 SDK dir was corrupted. Used another one I found and bam it worked right away! |
Beta Was this translation helpful? Give feedback.






Uh oh!
There was an error while loading. Please reload this page.
-
JDK versions tried:
launch.json:
{ "version": "0.2.0", "configurations": [ { "type": "swf", "request": "attach", "name": "AIR Android Debug", "connect": true, "platform": "android", "preLaunchTask": "Build AIR Android" } ] }tasks.json:
{ "version": "2.0.0", "tasks": [ { "type": "actionscript", "debug": true, "air": "android", "group": "build", "problemMatcher": [], "label": "Build AIR Android", } ] }asconfig.json:
{ "config": "airmobile", "compilerOptions": { "output": "bin/MyApp.swf" }, "application": "src/MyApp-app.xml", "files": [ "src/MyApp.as" ] , "airOptions": { "android": { "listen": true, "output": "bin/MyApp.apk", "signingOptions": { "storetype": "pkcs12", "keystore": "android_certificate.p12" } }, "files": [ { "file": "icons", "path": "icons" } ] } }MyApp-app.xml:
Beta Was this translation helpful? Give feedback.
All reactions