• Breaking News

    [Android][timeline][#f39c12]

    Saturday, December 7, 2019

    App Feedback Thread - December 07, 2019 Android Dev

    App Feedback Thread - December 07, 2019 Android Dev


    App Feedback Thread - December 07, 2019

    Posted: 07 Dec 2019 04:28 AM PST

    This thread is for getting feedback on your own apps.

    Developers:

    • must provide feedback for others
    • must include Play Store, GitHub, or BitBucket link
    • must make top level comment
    • must make effort to respond to questions and feedback from commenters
    • may be open or closed source

    Commenters:

    • must give constructive feedback in replies to top level comments
    • must not include links to other apps

    To cut down on spam, accounts who are too young or do not have enough karma to post will be removed. Please make an effort to contribute to the community before asking for feedback.

    As always, the mod team is only a small group of people, and we rely on the readers to help us maintain this subreddit. Please report any rule breakers. Thank you.

    - Da Mods

    submitted by /u/AutoModerator
    [link] [comments]

    Keigen: A Kotlin library for fast matrix operations and linear algebra built on the C++ Eigen library

    Posted: 07 Dec 2019 02:02 AM PST

    Has anyone for the love of god figured out how to have a custom gradle test task without modifying the default `gradlew test`?

    Posted: 07 Dec 2019 12:58 PM PST

    Hi, I want to have a tasks which runs only selected tests. Sounds reasonable? My naive gradle brain tells me to

    task myTest(type: Test) { group = "verification" include "com.myapp.foo.MessageManagerTest.class" 

    }

    FAILURE: Build failed with an exception.
    * What went wrong:
    Could not determine the dependencies of task ':myTest'.
    > java.lang.NullPointerException (no error message)

    What?

    I google around, and people modify the default test tasks like this

    def integrationTests = false ... testOptions { unitTests.all { useJUnit() if (integrationTests.toBoolean()) { println "Integration Tests Only for " + it.name options { excludeCategories 'com.example.reactivemvp.categories.UnitTest' } } else { println "Unit Tests Only for " + it.name options { excludeCategories 'com.example.reactivemvp.categories.IntegrationTest' } } } } 

    What?

    Documentation is ofcourse unhelpful as usual with gradle, and or references java plugin. Facepalm

    submitted by /u/ursusino
    [link] [comments]

    Android weekly application

    Posted: 07 Dec 2019 09:41 AM PST

    What is Firebase? 15 Reasons to Master It - Firebase Tutorials

    Posted: 07 Dec 2019 06:35 AM PST

    Color Picker

    Posted: 07 Dec 2019 03:20 PM PST

    Hello guys,
    For a small project of mine, i want to implement/use a color picker, so that the user can pick a color out of a given list.
    I really liked this design with the square buttons/images. But i dont wanna use this in a dialog box. Is there an easy way to implement something like that. Or is there another library that does this already?

    submitted by /u/CrazyKing11
    [link] [comments]

    Any Admob or Ads SDK professionals (have actually published stuff using them) I can talk to directly? Unity 3D knowledge is key as well.

    Posted: 07 Dec 2019 12:39 PM PST

    Not looking for entry level guys here. My team is in the middle of launching and we are in this endless nightmare of Admobs + mediation with other sites but we are constantly encountering issues.

    Let me know if you are interested it would mean alot.

    EDIT: I will pay you for an hour of you time

    submitted by /u/AdamCaveRoberts
    [link] [comments]

    Anyone here whose app got indexed in Play Store?

    Posted: 07 Dec 2019 06:06 AM PST

    I wanted to release an app like a month ago, but then I started seeing these posts which say apps aren't getting indexed, so I postponed it. Seems like google will be google and will always treat devs like shit and won't answer our questions.

    So is there someone here whose new app got indexed in Play Store? Should I risk uploading the app now and then spend money marketing it, or should I wait until we hear something positive?

    Edit: Just want to know this to see if ALL the new apps are not getting indexed, or it's just a problem with some apps.

    submitted by /u/AwkwardShake
    [link] [comments]

    is this a proper way of adding listeners?

    Posted: 07 Dec 2019 10:29 AM PST

    Fragment class button on click method

    views.findViewById(R.id.sign_up_btn).setOnClickListener(view ->
    viewModel.registerUser(signUpEmail.getText().toString(), signUpFullName.getText().toString(), signUpPassword.getText().toString(), new SuccessListener() {
    u/Override
    public void onSuccess() {
    Toast.makeText(getActivity(), "User created successfully", Toast.LENGTH_SHORT).show();
    }

    u/Override
    public void onFailure() {
    Toast.makeText(getActivity(), "Please try again later", Toast.LENGTH_SHORT).show();
    }
    })
    );

    viewmodel class

    public void registerUser(String email, String name, String password, SuccessListener successListener) {
    User user = new User(email,name,password);
    userRepository.registerUser(user, successListener);
    }

    repository class

    public void registerUser(User user, SuccessListener successListener) {
    auth.createUserWithEmailAndPassword(user.getEmail(), user.getPassword()).addOnCompleteListener((@NonNull Task<AuthResult> task) -> {
    if (task.isSuccessful()) {
    currentUser = auth.getCurrentUser();
    if (currentUser != null) {
    UserProfileChangeRequest profile = new UserProfileChangeRequest.Builder()
    .setDisplayName(user.getName())
    .build();
    currentUser.updateProfile(profile).addOnCompleteListener((@NonNull Task<Void> profileTask) -> {
    if (profileTask.isSuccessful()) {
    Log.v(TAG, "PROFILE UPDATED");
    successListener.onSuccess();
    }
    });
    }
    }else {
    Log.w(TAG,task.getException());
    successListener.onFailure();
    }
    });
    }

    is there any other way I know about whether user created successfully?

    submitted by /u/nabeel527
    [link] [comments]

    Is it possible to re-program an android's native app functions?

    Posted: 07 Dec 2019 12:07 PM PST

    I want my samsung galaxy to be able to start recording video with only the press (or double press) of a button while the phone is off/sleeping.

    The phone does not do this natively. I was wondering if there is a way to re-program native features and program this feature into the phone myself? If so what is this concept called so that I can look more into it? Or any other approaches? I don't have a lot of experience programming with android but am a fast learner and would love to work on this as a learning project.

    If not, I'd also like to simply have some sort of icon at the top of the unlock screen that when pressed opens the camera, at least. Currently, natively, there is a button at the bottom of the screen that when swiped opens up the camera for taking photos.

    Another option is to simply build an app, but I'd want the app to appear on the lock screen or open up automatically at the double press of the phones power button.

    submitted by /u/codeyCode
    [link] [comments]

    Android Developers Blog: Android’s commitment to Kotlin

    Posted: 06 Dec 2019 08:00 PM PST

    Apps' icons should have a dark mode version.

    Posted: 07 Dec 2019 09:18 AM PST

    An app launcher icon should look darker when the system is in dark mode. Not sure if doable, or if already done by some apps.

    submitted by /u/Askalany
    [link] [comments]

    SkinDx: Machine learning android app for pigmented skin lesion diagnosis with HAM10000 dataset

    Posted: 06 Dec 2019 09:27 PM PST

    Everytime I open Android studio, it opens a blank new instance that does nothing and uses all RAM

    Posted: 06 Dec 2019 09:17 PM PST

    This windows open alongside my main window that contains current project and if I close that blank instance my whole Android studio gets closed. Any solution? I have reinstalled AS, reverted back to previous version but the problem persists.

    submitted by /u/fuser312
    [link] [comments]

    [CI/CD Noob] How should I trigger a release?

    Posted: 06 Dec 2019 08:18 PM PST

    Hi, I'm trying to learn CI/CD, my previous setup (as a solo developer) was to run tests before release manually.

    i.e. I had a gradle buildAppRelease task which did 1. clean, 2. run unit tests 3. run lint 4. assembleRelease

    However so when I had my release branch stabilized as I'd like, I just ran gradlew buildAppRelease and everything was ran and apks generated if everything was passing.

    Now, I'm trying to do a CI/CD (running unit tests every commit into master works as expected and is cool), and I'm struggling to figure out how would I'd do this exact release thing but on a CI. Basically what the issue is that CI wans to run my whatever every commit, I did figure out how to run different task if on a release/* branch, so for example lint is not run on master etc, but still it wants to run the buildAppRelease task every commit in the release branch, which takes forever and is not necessary (and I'm looking to add firebase test lab tests into this and it would get costly I think)

    TLDR; how can I tell CI, "hey I want to release now, run full checks and assembleRelease" (and make the apks available for download? (If not deploy the apk for now). As opposed to unit tests only every master commit)

    // PS: using github actions

    Thanks!

    submitted by /u/ursusino
    [link] [comments]

    We have a lot of Fake Orders by the robot on Android App

    Posted: 06 Dec 2019 08:06 PM PST

    We have a lot of Fake Orders by the robot on Android App

    Hi all

    I have an e-commerce app that selling cosmetics. Last weeks we start to work with an "A.I Marketing company" and they charge us a fee base on order (CPO). They are Legal company, contract signed. We use third party tracking: Adjust.

    When they starting to run, we received a lot of fake order from robot and its come from android devices.

    -No meanning name

    -Fake number

    -Delivery address not exist.

    I would like to ask anyone here experiences the same?

    We already have a solution is using OTP SMS sending to register's phone number to verify the real person or robot. However, I would like to ask why it happens, what could be the reason someone creates a robot to do this.

    The A.I marketing agree and recommend us to use OTP SMS to verify so they may not be the cause.

    Picture bellow: some fake name and the address the bot uses to create order.

    Order created few second after register.

    https://preview.redd.it/802rw602y4341.png?width=518&format=png&auto=webp&s=0ef803c6e150d8fe688d6c08ed3ffa9f8f6d9d37

    submitted by /u/minhbui207
    [link] [comments]

    No comments:

    Post a Comment

    Fashion

    Beauty

    Travel