Top 5 Free - BB1 game trending now - Damn Daniel!

Discussion in 'Game Showcase' started by ajcoryat, Mar 12, 2016.

  1. Jamie

    Jamie Avid Boxer

    Joined:
    Sep 25, 2015
    Messages:
    382
    Likes Received:
    273
    As I know next to nothing about implementing the notifications, I worry that it would be silly for me to fork over every nook and cranny of my native code (e.g. the version of my game I export from buildbox for iOS). Can anyone provide advice here on what parts of the code I can/should share with a hired programmer so that they can still do their job of implementing the notifications without forking all of my code and assets for the game?
     
  2. appnoxious

    appnoxious Boxer

    Joined:
    Mar 3, 2016
    Messages:
    22
    Likes Received:
    21
    @Jamie One Signal pretty has a great guide for the install and they guide you through creating the certificates step by step. As for the integration you download the framework and add that to your project in Xcode. Then the two files you modify are the AppController.h and the AppController.mm

    Here is what the AppController.h will look like I made the changes in bold:

    #import <UIKit/UIKit.h>
    #import <OneSignal/OneSignal.h>

    @class RootViewController;

    @interface AppController : NSObject < UIAccelerometerDelegate, UIAlertViewDelegate, UITextFieldDelegate,UIApplicationDelegate> {
    UIWindow *window;
    RootViewController *viewController;

    UIAlertView *loadingView;
    }
    @property (nonatomic, readonly) RootViewController *viewController;
    @property (strong, nonatomic) OneSignal *oneSignal;

    - (void)loadingDidComplete;
    - (void)showCustomFullscreenAd;

    @end


    Then in AppController.mm in

    - (BOOL)application: (UIApplication *)application didFinishLaunchingWithOptions: (NSDictionary *)launchOptions {


    // add this and put in your ID from One Signal
    self.oneSignal = [[OneSignal alloc] initWithLaunchOptions:launchOptions
    appId:"YOUR ID HERE"
    handleNotification:nil];


    }
     
    Last edited: Mar 14, 2016
  3. Jamie

    Jamie Avid Boxer

    Joined:
    Sep 25, 2015
    Messages:
    382
    Likes Received:
    273
    What can we use for Android builds?
     
  4. appnoxious

    appnoxious Boxer

    Joined:
    Mar 3, 2016
    Messages:
    22
    Likes Received:
    21
    firedevil14, Jamie and Gregory Storm like this.
  5. AndyG

    AndyG Miniboss Boxer

    Joined:
    Sep 25, 2015
    Messages:
    1,100
    Likes Received:
    915
    thats great. thanks for that @appnoxious :)
     
    appnoxious likes this.
  6. firedevil14

    firedevil14 Boxer

    Joined:
    Feb 22, 2016
    Messages:
    11
    Likes Received:
    5
    First of all, congratulations to Appnoxious and Josiah Jenkins! You guys give me more motivation to develop games (and copy games :D)

    So are we allowed to make a 90% clone of Ball Jump like that? Just change the character, change the sounds, change the levels, and release? Or was the game licensed from the Ball Jump developers?
     
  7. Gregory Storm

    Gregory Storm Avid Boxer

    Joined:
    Sep 25, 2015
    Messages:
    169
    Likes Received:
    130
    I use PushWoosh for all my games due to it being the most feature rich and you can install it in less than five minutes with CocoaPods, which I use for my Buildbox project.
     
  8. eyal

    eyal Serious Boxer

    Joined:
    Sep 25, 2015
    Messages:
    642
    Likes Received:
    121
    congrats and envy :) but I have a question. looking at the store there are many damn daniel games. what sets this apart was obviously marketing - what was it ? this is the gold key to all this popularity
     
  9. mugen_id

    mugen_id Boxer

    Joined:
    Oct 6, 2015
    Messages:
    76
    Likes Received:
    32
    Your question is very stab hahahha
     
  10. Florian Porkert

    Florian Porkert Boxer

    Joined:
    Sep 25, 2015
    Messages:
    22
    Likes Received:
    45
    There were some shops that sold the source code of other games without the permission of the developers. We are in contact with ChupaMobile and other shops to prevent this in the future. But it is not that easy to be solved. You are only allowed to develop a new game from scratch that behaves similar to another game. But you cannot take a source code or the BBDoc file source code of another game without their permission and change all elements by just 2% to make it look a little bit different. You should be very careful with that.
    I don't mind if someone takes my idea of Ball Jump and creates a new game around this game idea. And I think nobody will. But you should not steal parts of the BBDoc source code and just modify it a little bit.
     
  11. Christoph

    Christoph Miniboss Boxer

    Joined:
    Oct 4, 2015
    Messages:
    2,807
    Likes Received:
    2,309
    This was asked some month ago already. But is it that simple to copy a source code from an IPA and then bring it back into Buildbox?
     
  12. todro

    todro Avid Boxer

    Joined:
    Sep 25, 2015
    Messages:
    151
    Likes Received:
    69
    Yes
     
  13. firedevil14

    firedevil14 Boxer

    Joined:
    Feb 22, 2016
    Messages:
    11
    Likes Received:
    5
    I don't think there's any native functionality to import the source code back into BuildBox. But you can definitely get the source code from the IPA file, although it's a very complicated process. First, you have to decrypt the IPA's binary file using some tools, and then you must reverse engineer it with some other tools to get the source code. Most people won't go through all that trouble, but if you really want the source code, you can get it:

    *Link Removed by Admin *
     
    Last edited: Mar 15, 2016
    Christoph and Wings n Armor like this.
  14. Wings n Armor

    Wings n Armor Avid Boxer

    Joined:
    Oct 1, 2015
    Messages:
    280
    Likes Received:
    125
    Props to @appnoxious and @Machine Rises for amazing marketing strategies.
    Great games do not go anywhere without a dynamic marketing plan.
     
    appnoxious and Jamie like this.
  15. Christoph

    Christoph Miniboss Boxer

    Joined:
    Oct 4, 2015
    Messages:
    2,807
    Likes Received:
    2,309
    I imagined that you can get somehow the source code from an IPA but what really interests me, is, if it is really possible to get it back into BB. @Florian Porkert you seem to be very convinced that it was done like that(?).
     
  16. todro

    todro Avid Boxer

    Joined:
    Sep 25, 2015
    Messages:
    151
    Likes Received:
    69
    Final apps can be transformed into a working BBDOC, this is not limited to IPA...
     
  17. eyal

    eyal Serious Boxer

    Joined:
    Sep 25, 2015
    Messages:
    642
    Likes Received:
    121
    WHAT ARE THEY ? WHAT DOES IT MEAN ?
     
  18. livelifeindesign

    livelifeindesign Boxer

    Joined:
    Dec 26, 2015
    Messages:
    14
    Likes Received:
    1
    Was Damn Daniel made with BuildBox 1 or 2?
     
  19. todro

    todro Avid Boxer

    Joined:
    Sep 25, 2015
    Messages:
    151
    Likes Received:
    69
    BB1
     
    livelifeindesign likes this.
  20. deepgeet

    deepgeet Boxer

    Joined:
    Sep 29, 2015
    Messages:
    38
    Likes Received:
    3
    hello friends which Rewarded video Ads used into it?
     

Share This Page