Recent content by FSP Devs

  1. F

    [APP][FREE] Groove Pads - Make Beats and Mix Music

    Make your own amazing music track! Take advantage of the great library of high quality sounds in different genres of music. Make beats, mix music and use studio quality effects. Record your performance or compose song from scratch! KEY FEATURES - 24 colorful pads, - make music by tapping pads...
  2. F

    Spam threshold

    Same for me: The following errors occurred with your submission Exceeded spam threshold (3/3) when creating post with images (with 'Retrieve remote file and reference locally' checked).
  3. F

    Navigating to aother app activity (not landing page of other activity) by my app

    Try to add this before startActivity: launchIntent.addCategory(Intent.CATEGORY_LAUNCHER);
  4. F

    error ';' expected

    I believe there is a syntax error. Paste code of class where error occurred.
  5. F

    What SDK are you using to develop Android games and apps?

    I recommend Cocos2dx. Check Godot and Defold too.
  6. F

    please help me with this gradle error in Android Studio

    Paste your top-level and module build.gardle. In your top-level file you can't define an android block.
  7. F

    is it possible web camera for scanning an barcode image in web application?

    Here - https://github.com/dm77/barcodescanner - you have simple to use library.
  8. F

    Passing object as argument in method. App crashes. Why?

    Declare textViews globally: private TextView textView1; private TextView textView2; Initialize fields in "onCreate" method: textView1 = (TextView) findViewById(R.id.textview1); textView2 = (TextView) findViewById(R.id.textview2);
  9. F

    Paint not fill square properly in custom view

    First of all - don't create Paint object in "onDraw" method. It will create new object every time android will render "Shape". Call only "invalidate" in in "setColor" and "requestLayout" in "setShapeHeight". Take a look: https://plus.google.com/+ArpitMathur/posts/cT1EuBbxEgN What is parent...
  10. F

    Android

    "runningrunning fine" is root cause of JSONException. Why do you try to parse it?
  11. F

    proper architecture of Android App, best practices, estabilished solutions ?

    Check those links: Android Architecture Blueprints: https://github.com/googlesamples/android-architecture Rosie framework: https://github.com/Karumi/Rosie Android Reactive Architecture: https://android.jlelse.eu/android-reactive-architecture-part-1-introduction-60466bc88774 Android Clean...