Buildbox 2.3.7

Discussion in 'Official Announcements' started by NikRudenko, Nov 1, 2018.

  1. NikRudenko

    NikRudenko Administrator Staff Member

    Joined:
    Sep 25, 2015
    Messages:
    179
    Likes Received:
    493
    Hello everyone.
    Here is Release Candidate for Buildbox 2.3.7

    WIN: http://download.buildbox.com/buildb...3.7-2312_07a29be4be3501aa07af3a59b63674f8.exe
    MAC: http://download.buildbox.com/buildb...3.7-2312_67b09811aed8f7daf67692f5564a758f.dmg

    Change log since last 2.3.7 Beta:
    fixed: Character re order issue
    fixed: Button Image offset (fixed multiple cases)
    fixed: Save process
    fixed: Character outside group
    fixed: Deleted Character is still moving with Character under Linker Mode
    fixed: Image and Sprite processing
    fixed: The Background image appears under Foreground in Scene Tree
    fixed: Portals for linked characters
    fixed: Playcooldown warning messages
    fixed: The Text appears under the Scene Tree in place of Name of the Label.
    fixed: The application crashes while copying Object from World into the Game Mind Map.

    Cheers
     
  2. MAC420

    MAC420 Avid Boxer

    Joined:
    May 2, 2018
    Messages:
    348
    Likes Received:
    156
    I'm getting a unknown publisher warning? Should I be worried about this?
     
  3. NikRudenko

    NikRudenko Administrator Staff Member

    Joined:
    Sep 25, 2015
    Messages:
    179
    Likes Received:
    493
    It is ok. It might be due to our upgrade of Windows Certificate.
     
    MAC420 likes this.
  4. JEO147

    JEO147 Boxer

    Joined:
    Jul 31, 2017
    Messages:
    6
    Likes Received:
    2
    https://drive.google.com/file/d/11bzkCwHzMBwdjLWoA5WoY2eonHrP8kAv/view?usp=sharing
    In Version 2.3.7.2312 (Mac), I am unable to copy/paste grouped items with the connectors. It duplicates the items selected without the connection. I've tried A,S,W,D and Command+Copy/ Command+Paste, but yielded the same results. I get everything except for the connectors. This is very problematic since I have a few objects overlapping and now must separate them, connect them and reposition.
     
    Xoctrebla likes this.
  5. volcank

    volcank Serious Boxer

    Joined:
    Oct 8, 2015
    Messages:
    794
    Likes Received:
    391
  6. LordOz

    LordOz Boxer

    Joined:
    Oct 17, 2018
    Messages:
    5
    Likes Received:
    1
    Didn't face any issues till I upgrade to this version then tried creating .apk in Android Studio and saw a load of issues such as google play service errors and a bunch of other, all I did was updated the build.gradle file with the latest version of gradle and all the problems/errors were resolved. It might help other.
     
    MAC420 likes this.
  7. Kanishk Sachdeva

    Kanishk Sachdeva Avid Boxer

    Joined:
    Jul 10, 2018
    Messages:
    217
    Likes Received:
    16
    Does this have a revoke consent button for Android and iOS both ?
     
  8. MAC420

    MAC420 Avid Boxer

    Joined:
    May 2, 2018
    Messages:
    348
    Likes Received:
    156
    we are having the same issues with our apk. I've been trying to fix it for a week with no resolve. everything is upgraded but I cant seem to fix the issues.
    i am unsure how to attach a screenshot so this is a copy and paste of my issues currently.
    Failed to resolve: play-services-ads
    Open File


    Failed to resolve: play-services-auth
    Open File


    Failed to resolve: firebase-auth-license
    Open File
    If i fix the play services and firebase as the walk-through suggests i get a new issue with the build.gradle module
    apply plugin: 'com.android.application'.
    any suggestions ?
     
  9. 5petersonzachary

    5petersonzachary Serious Boxer

    Joined:
    Jan 23, 2016
    Messages:
    569
    Likes Received:
    169
    I am also having that problem
     
    MAC420 likes this.
  10. LordOz

    LordOz Boxer

    Joined:
    Oct 17, 2018
    Messages:
    5
    Likes Received:
    1
    @MAC420 && @5petersonzachary if you are using Android studio. Unfortunately, this what I have been using so my help would only extend to this limit.

    I was seeing the similar errors and I have provided the solution in my previous thread but, I am going to try and explain better.
    Once you see the error after opening the existing project.
    1) Navigate to the left pane which looks link in the scrshot: http://prntscr.com/lix29j
    2) Double click on: build.gradle (Project: android)
    3) In the center pane you will the gradle file opened with codes
    4) Navigate to "dependencies" code block and update to the gradle version that you are running.
    - For me it is 3.2.1. scrshot: http://prntscr.com/lix3ea
    Now that worked for me. I am also c/p the code that you can just replace with what the files currently contains.

    Code:
    // Top-level build file where you can add configuration options common to all sub-projects/modules.
    buildscript {
    repositories {
    jcenter()
    google()
    }
    dependencies {
    classpath 'com.android.tools.build:gradle:3.2.1'
    }
    }
    
    allprojects {
    repositories {
    jcenter()
    maven {
    url "https://maven.google.com"
    }
    }
    }
    
    ############################################################################################################
    ############################################################################################################

    Please also make sure that your "compileSdkVersion" & "BuildToolsVersion" is what you have installed
    I made changes to other places as well so you are free to use the below code as well.
    I am pasting the guild.gradle (Module. app) code here for you to c/p and remove what you have. Don't forget to change the application id to yours. I have put XXX.XXXX.XXXXX so you don't forget.

    Code:
    apply plugin: 'com.android.application'
    android {
    compileSdkVersion 26
    buildToolsVersion '28.0.3'
    defaultConfig {
    applicationId "XXX.XXXX.XXXXX"
    minSdkVersion 16
    targetSdkVersion 26
    multiDexEnabled true
    ndk {
    moduleName "player_shared"
    }
    }
    
    buildTypes {
    release {
    minifyEnabled false
    proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
    }
    }
    
    dexOptions {
    javaMaxHeapSize "4g"
    }
    }
    
    dependencies {
    implementation 'com.google.android.gms:play-services:+'
    implementation 'com.android.support:multidex:1.0.3'
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.google.android.gms:play-services-ads:11.6.0'
    // More deps here //
    }
    
    No promises or guarantees but, this seems to be working for me. Worse case scenario you would have to re-import the project in the situation where my advice did not work.

    Let me know if you still need help.
     
    Last edited: Nov 15, 2018
  11. Bronzart Boxer

    Bronzart Boxer Boxer

    Joined:
    Nov 16, 2018
    Messages:
    1
    Likes Received:
    0
    Hi Guys

    Following solution worked for me as well

    go to your build.gradle (Project: android)

    Under Depencies put
    com.android.tools.build:gradle:3.2.1'

    Then go to build.gradle (Modeule.app)

    Under Depencies modify
    implementation 'com.google.android.gms:play-services:+'

    CHANGE TO

    implementation 'com.google.android.gms:play-services:11.6.0'

    Get rid of all three error

    Failed to resolve: play-services-ads
    Open File


    Failed to resolve: play-services-auth
    Open File


    Failed to resolve: firebase-auth-license
    Open File

    Cheers
     
  12. ionicapetrica98

    ionicapetrica98 Boxer

    Joined:
    Oct 27, 2015
    Messages:
    34
    Likes Received:
    4
    Share button (image) on android is fixed?
    now capture black image!
     
  13. ReVerseJ

    ReVerseJ Boxer

    Joined:
    Feb 26, 2018
    Messages:
    2
    Likes Received:
    0
    @NikRudenko any way to incorporate a git repository or some version control and collaboration system?
     
  14. AaroArts

    AaroArts Miniboss Boxer

    Joined:
    Jun 22, 2016
    Messages:
    1,546
    Likes Received:
    826
    Is there any news on an new 2.3.X build or any bug fixes?
    I think everyone would really appreciate a quick update from the dev team, just to let us know where we’re at.
    Thanks guys.
    @NikRudenko @TreySmith @Sean Buildbox
     
    MAC420 and micdune like this.
  15. ionicapetrica98

    ionicapetrica98 Boxer

    Joined:
    Oct 27, 2015
    Messages:
    34
    Likes Received:
    4
    @NikRudenko, Please can you tell me: share button can be fixed?
    in IOS is Broken (2.2-2.3.6) (Game Field Screen dosen't work> show game over screen), in Android is broken totally > Black screen.
    Can be fixed? Do you have any solution?
    This question was asked a year ago and no response.
     
  16. micdune

    micdune Boxer

    Joined:
    Dec 27, 2016
    Messages:
    57
    Likes Received:
    13
    Is there any news on an new 2.3.X build or any bug fixes?
    Bumping what AaroArts said.
     
    MAC420 likes this.
  17. MAC420

    MAC420 Avid Boxer

    Joined:
    May 2, 2018
    Messages:
    348
    Likes Received:
    156
    So I was able to fix the play ads issue with a new dependency,
    implementation 'com.google.android.gms:play-services-ads:17.1.1'

    however the other 2 issues a lot of us are having...
    Failed to resolve: play-services-auth
    Open File


    Failed to resolve: firebase-auth-license
    Open File
    i can not find a fix for and my build looks just like the one above.
     
  18. Buildbox

    Buildbox Administrator

    Joined:
    Sep 15, 2015
    Messages:
    101
    Likes Received:
    201
    Hi Guys, 2.3.7 just had an official release. We will continue having 2.3.X bug fix releases, with 2.3.8 already being worked on. New features are being released in 3.X, with 2D being released in Beta 4.
     
  19. wesam_badr

    wesam_badr Miniboss Boxer

    Joined:
    Oct 10, 2015
    Messages:
    1,064
    Likes Received:
    479
    When beta 4 there is 10 days to the month end
     
    Buildbox likes this.
  20. thatguyminib

    thatguyminib Serious Boxer

    Joined:
    Jul 1, 2017
    Messages:
    552
    Likes Received:
    309
    Does this include being able to import bb2 docs?
     

Share This Page