Android Studio Doesnt Support C++

Discussion in 'How Can I...?' started by ZyzygyGames, Dec 11, 2016.

  1. ZyzygyGames

    ZyzygyGames Avid Boxer

    Joined:
    Dec 8, 2016
    Messages:
    123
    Likes Received:
    13
    How can I fix that problem?
    Do I need a plugin or something or what should I do?
     
  2. bluemoonstudios

    bluemoonstudios Avid Boxer

    Joined:
    Oct 8, 2015
    Messages:
    156
    Likes Received:
    56
    Did you export your game as Android before importing it to Android Studio?
     
  3. khalid

    khalid Avid Boxer

    Joined:
    Feb 17, 2016
    Messages:
    343
    Likes Received:
    67
     
    ZyzygyGames likes this.
  4. asupawat

    asupawat Boxer

    Joined:
    Sep 25, 2015
    Messages:
    3
    Likes Received:
    0
    Follow the video working fine with Heyzap enable but when we set "multiDexEnabled true" the Android API level below 21 will not working any more. Any solution to build to support API level 20 and lower using Android Studio.

    Thanks.
     
  5. ZyzygyGames

    ZyzygyGames Avid Boxer

    Joined:
    Dec 8, 2016
    Messages:
    123
    Likes Received:
    13
    Which is better and which do you use, Eclipse or Android Studio?
     
  6. asupawat

    asupawat Boxer

    Joined:
    Sep 25, 2015
    Messages:
    3
    Likes Received:
    0
    After tested new Heyzap SDK 10 with Facebook Audience Network working fine on Android Studio only.
     
  7. ZyzygyGames

    ZyzygyGames Avid Boxer

    Joined:
    Dec 8, 2016
    Messages:
    123
    Likes Received:
    13
    Khalid thanks, that solved my problem, now I can generate the apk, but when I install it, it wont open, some advices or solutions?
     
  8. asupawat

    asupawat Boxer

    Joined:
    Sep 25, 2015
    Messages:
    3
    Likes Received:
    0
    Khalid, Is possible to build with out multiDexEnabled?
     
  9. khalid

    khalid Avid Boxer

    Joined:
    Feb 17, 2016
    Messages:
    343
    Likes Received:
    67
    In build.gradle

    Put this in android
    Code:
     
    configurations {
            all*.exclude group: 'com.android.support', module: 'support-v4'
        }
    
    in dependences change this
    Code:
        compile ('com.google.android.gms:play-services:+'){exclude module: 'support-v4'}
    
    to become
    Code:
        compile 'com.google.android.gms:play-services:+'
    
     
    ZyzygyGames likes this.
  10. khalid

    khalid Avid Boxer

    Joined:
    Feb 17, 2016
    Messages:
    343
    Likes Received:
    67
    ZyzygyGames likes this.
  11. ZyzygyGames

    ZyzygyGames Avid Boxer

    Joined:
    Dec 8, 2016
    Messages:
    123
    Likes Received:
    13
    Doesnt work, sorry for bother but I really need help :(
     
  12. ZyzygyGames

    ZyzygyGames Avid Boxer

    Joined:
    Dec 8, 2016
    Messages:
    123
    Likes Received:
    13
    Well, I tried to solve all the problems myself and I solved most of them, the only thing that has a problem is this thing:

    https://developer.android.com/guide/topics/data/autobackup.html

    In my_backup_rules.xml in the code:

    <?xml version="1.0" encoding="utf-8"?>
    <full-backup-content>
    <include domain="sharedpref" path="."/>
    <exclude domain="sharedpref" path="device.xml"/>
    </full-backup-content>

    device.xml is in red, so I thing that it means that there is a problem.

    And the other problem is that when I install the app, it doesnt show the icon and cannot be opened, hahahahaha every step worst.

    Im using BB 2.2.7 but khalid, can you make a new video about how do you generate the apk please,
    from Buildbox export, to Android Studio steps and generate the apk, thanks a lot.
     
    wgoodpaster likes this.
  13. khalid

    khalid Avid Boxer

    Joined:
    Feb 17, 2016
    Messages:
    343
    Likes Received:
    67
    I will try, but after the beta become full release
     
    wgoodpaster and ZyzygyGames like this.
  14. ZyzygyGames

    ZyzygyGames Avid Boxer

    Joined:
    Dec 8, 2016
    Messages:
    123
    Likes Received:
    13
    I appreciate what you do, I understand if you are busy by the christmas and that, no problem, I just want to realease my app at least this month or january.
     
  15. khalid

    khalid Avid Boxer

    Joined:
    Feb 17, 2016
    Messages:
    343
    Likes Received:
    67
    No trouble, but this type of tutorial better to do it on released version and not on beta
     
    wgoodpaster likes this.
  16. ZyzygyGames

    ZyzygyGames Avid Boxer

    Joined:
    Dec 8, 2016
    Messages:
    123
    Likes Received:
    13
    Can you please, maybe, do it for 2.2.7 or another version, just for publish my app, Im just using admob and game services as leaderboard that is already integrated in buildbox but in the future I want to put video rewards, I just want to publish my app as soon as possible(So I can get downloads and earn some money). Thanks.
     
    wgoodpaster likes this.

Share This Page