5

So, I have made the tweejump iOS application successfully for android using apportable. And apportable also installed the application on the devices. But the mysterious thing is, I am not able to find the tweejump-debug.apk in the tweejump folder.

Also, I am using the free sdk.

Please suggest.

-Nimit

Nimit Jain
  • 95
  • 2
  • 7

1 Answers1

5

Apportable builds are stored separately from the project itself - in $HOME/.apportable/SDK/build.

For example, to see the .apk files for the Spin example:

$ cd $HOME/.apportable/SDK/build
$ find . | grep "debug.apk$"
./android-armeabi-debug/Spin/Spin-debug.apk
Paul Beusterien
  • 27,542
  • 6
  • 83
  • 139