• Breaking News

    [Android][timeline][#f39c12]

    Wednesday, May 6, 2020

    Join us for #Android11: The Beta Launch Show! Android Dev

    Join us for #Android11: The Beta Launch Show! Android Dev


    Join us for #Android11: The Beta Launch Show!

    Posted: 06 May 2020 06:26 AM PDT

    Circular Determinate Progress View - A highly customizable progress view with built in animations, gradient support and more

    Posted: 06 May 2020 05:25 PM PDT

    Gradle 6.4 Released

    Posted: 06 May 2020 01:26 PM PDT

    Our app was removed from store for "Covid-19" related text

    Posted: 06 May 2020 08:24 AM PDT

    Hey guys,

    Our app, Deepstash (cache link) was suspended from Play a few hours ago, because it apparently contains texts related to Covid-19.

    Being suspended, we cannot update it so we have submitted an appeal.

    Now I know some other users (like u/Smive) here have had issues in the past month with this and managed to get back from this.

    Our app isn't a news app, nor do we engage in communicating specific Covid related news or information. It's possible that Play's algo classified us as fake news or similar.

    Deepstash is a self-improvement app, where we curate articles on self-development from reputable authors all over the web and create ideas that our users use to better themselves and grow.

    We pinged this subreddit while we were just starting out, months ago, and we have great feedback from users.

    Our topics are about remote work or productivity or other support areas. It's clear that in recent months, some articles also mention the current pandemic amidst the good advices.

    We don't share statistics on the pandemic nor are we "a tracker" or anything remotely similar. We also do not have any mention of Corona or Covid in any of our store listing.

    The support from our users was awesome and we are close to 1M installs in Play, with a 4.8 steady rating (14k reviews).

    Do you guys have any suggestions?

    We did contact some people at Google by mail and Twitter DMs, sent some tweets to our users that wanted to share the app but couldn't find it and removed any articles and ideas that mention any words sorrounding "corona" or "covid".

    It's such a bummer and we're just scrambling to get ourselves back in Play.

    submitted by /u/Tommy-Stinger
    [link] [comments]

    AsyncAndroid YouTube - new channel containing short videos about various Android dev topics

    Posted: 06 May 2020 06:21 AM PDT

    If you are looking for interesting content about various topics, please check out a new channel we created.

    We have videos about a varied set of topics (content about Room, Motion Layout, Dagger, View Binding, Biometric prompt, Material Design and much more).

    We are planning on releasing new content every week.

    Hope everyone is doing well. We hope these short videos are useful and interesting for the community.

    https://www.youtube.com/channel/UC-qBi3QVQ8ow-QrIBeJi9ig

    @AsyncAndroid

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

    Now in Android #17

    Posted: 06 May 2020 04:41 PM PDT

    Announcing Flutter 1.17

    Posted: 06 May 2020 09:51 AM PDT

    What are some interesting soft skill non coding books that people can recommend?

    Posted: 06 May 2020 02:49 PM PDT

    I'm referring to books you could read away from the computer like on a bus or while you're not paying attention to your Zoom call. Books like interview questions, design theory, sales tactics for mobile apps. Things of that nature. Obviously Mobile Dev related preferred, but I know some books are for all types.

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

    addmob test ads not displaying anymore

    Posted: 06 May 2020 03:22 PM PDT

    Hello. I made a game with unity for android and I'm having problems wirh admob.When I first set the AdMob It was working fine.But now, it's not showing banner and when I request interstitial, the app directly closes.

    When I run the code in Unity, it works fine. I can see the following in the console:

    Created DummyClient
    Dummy CreateBannerView
    Dummy LoadAd

    When I compile the code for android, I can't get past the initializing.

    MobileAds.Initialize(initStatus => { });

    *******************************************************************************
    using System.Collections;
    using System.Collections.Generic;
    using UnityEngine;
    using GoogleMobileAds.Api;
    using UnityEngine.UI;

    public class reklamlar : MonoBehaviour
    {

    private BannerView bannerView;
    string adUnitId = "ca-app-pub-3940256099942544/6300978111";

    void Start()
    {

    MobileAds.Initialize(initStatus => { });

    this.RequestBanner();
    ShowBannerAd();
    }

    public void RequestBanner()
    {
    this.bannerView = new BannerView(adUnitId, AdSize.SmartBanner, AdPosition.Top);
    Debug.Log("banner Request");

    }

    public void ShowBannerAd()
    {
    AdRequest request = new AdRequest.Builder().Build();
    this.bannerView.LoadAd(request);
    Debug.Log("banner Show");

    }

    // Update is called once per frame
    void Update()
    {

    }
    }

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

    Android dynamic feature modules + Navigation Component is finally solved ��

    Posted: 06 May 2020 01:26 AM PDT

    Navigation Component + Dynamic feature was a very painful combination for a long time. Fortunately, the new 2.3.x version of the navigation library (still alpha) solves dynamic module navigation by introducing DynamicNavHostFragment and <include-dynamic... tag.

    Check this PR for concrete implementation https://github.com/igorwojda/android-showcase/pull/98/files (NavHostFragment -> DynamicNavHostFragment)

    More info:

    https://developer.android.com/guide/navigation/navigation-dynamic

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

    MyFriendTheTranslator (free translation app )

    Posted: 06 May 2020 04:39 PM PDT

    Hello fellow Redditors!

    I am a beginner in Android application development.

    I decided to make an app in app inventor, and a few days ago I published MyFriendTheTranslator

    on Google Play.

    https://play.google.com/store/apps/details?id=appinventor.ai_cinqminutescour.MyFriendTheTranslator&gl=MA

    MyFriendTheTranslator (free translation app )

    Supports 5 languages for text translation and speech translation

    Capable of speech-to-speech translations.

    I'd really like to hear your comments.

    I'd also really appreciate if you left a review on Google Play :)

    thanks

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

    Android 11: Beta Plans

    Posted: 06 May 2020 12:23 PM PDT

    Help, Is there an ios style theme?

    Posted: 06 May 2020 04:01 PM PDT

    Hi, recently started working for a client that has an app in native ios and native android, the new designs that are given are made with ios style and wants everything exactly like the design.

    My problem is that in Android the styles are different so I need to create every style.

    Is there a library or something that can make working with ios design more easy?

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

    Customizing your bottom sheet's corners

    Posted: 06 May 2020 06:46 AM PDT

    Is the Basic Activity with Fragments the standard new basic activity?

    Posted: 06 May 2020 02:43 PM PDT

    As I'm going through Android tutorials, I'm seeing a lot of 'make a new basic activity.' The basic activity shown in Android Studio has a button on it and that's what I'm seeing in the tutorials, but when I make a new basic activity I get one with fragments. It always has fragment_first.xml and fragment_second.xml. None of the tutorials I've seen have had any fragments in their new basic activities.

    I've spent several days trying to figure this out. I haven't been able to find a single resource on it except this one. I even got in contact with one of the tutorial creators who told me he didn't see what I was seeing. I've verified that I am indeed clicking on "Basic Activity." I'm not sure if I have a setting changed or what.

    Can anyone help me figure out what's going on? I feel like I'm going crazy. I'm using Android Studio 3.6.3 and everything is completely up to date.

    Edit: I figured it out. My father happened to have Android Studio 3.5 on his PC and when we created a "Basic Activity" it had just the activity_main and content files. When we updated his Android Studio to 3.6.3, new basic activities started having two fragment files. It must be something with the update.

    submitted by /u/mojo-j0j0
    [link] [comments]

    Android 11 Beta Launch Show

    Posted: 06 May 2020 08:26 AM PDT

    In Android Studio Kotlin, does this reference code @someName/file ALWAYS only look for classes?? details explained in the post.

    Posted: 06 May 2020 05:54 PM PDT

    so... If class and R are both auto-generated CLASSES, what happens if I do(in Kotlin code language), "@ someName/chair" ??? would Android Studio automatically assume "someName" is a CLASS so that even if there's no class named "someName"(while there's a file named "someName") it will still ignore the actual file named "someName" and return an error?

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

    Android mobile phone push service, almost every app needs

    Posted: 06 May 2020 05:47 PM PDT

    Android mobile phone push service, almost every app needs

    I think I need a push notification service on my App, which will make my App more intelligent.

    Earlier, a friend recommended Huawei 's push service suite,It has the following advantages:

    1.Free to use

    1. Online arrival rate 99%,Real-time message receipt

    2. Support multiple push methods and it will combine with data analysis

    Have you used any easy-to-use service package?

    Flow diagram

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

    I need help recording video with android

    Posted: 06 May 2020 01:37 PM PDT

    Someone asked me if I could make an app that once you shake your device, your phone will start recording video for 10 seconds, then saves the file and uploads it to your google Drive account on your phone.

    I'm a noob, I studied programming but I have 0 real experience working on it, this is the first thing that someone asked me to do and I want to at least try.

    I'm not looking for someone to give me code, I just want to know how you would do it. I've been looking for foreground service that can record, but I found nothing really helpful.

    I guess the way to do it is to access the camera on the device, record using a foreground service (for what I saw, you can't use the camera on background, so I guess foreground would do), then saving the file and then using another service to upload it to Drive. The thing is how can I launch those services from anywhere on the phone, without the app open in the screen.

    My head is a mess right now, I don't even know what to look for on Google to get answers, so if someone has a clue on how could I do this, I would really appreciate it.

    Thanks all, and sorry if I'm being dumb.

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

    An offer to purchase your game

    Posted: 06 May 2020 01:13 PM PDT

    I've gotten a few emails from different places that looks something like this.
    Anyone seem them before? Scam or what?

    Hi there,

    My name is *****, I am a content manager at Happy Tube. I would like to discuss publishing or purchasing **********.

    Does that sound interesting? Please, let me know, i will be happy to share the details.

    Thanks in advance,

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

    Android Programming Certificate

    Posted: 06 May 2020 04:54 PM PDT

    Hi there, I am a program manager for this Android Programming Certificate and I would like some advice from all of you Android developers. I am looking to revamp this program to better serve the needs of the students and I can propose an entirely new version of this program including different or new courses and condensed version. Could you please give me some of your thoughts on how I can make this program better? What types of programs have helped you? What types of programs you wish were out there? Also, what is your experience level in Android dev or programming. Thank you in advanced! :-)

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

    YouTube Sans: The Making of a Typeface

    Posted: 06 May 2020 01:07 PM PDT

    Does anybody have a graphical android system.img unpack/repacker for mac?

    Posted: 06 May 2020 04:37 PM PDT

    I have tried using the console to install ext4fuse and stuff like that but with macOS Mojave in the way it has permission errors trying to write the files so it sometimes doesn't work correctly which is why I was wondering if anybody had a graphical extractor for mac

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

    My app has been suspended. Any advice on what I can do?

    Posted: 06 May 2020 03:56 AM PDT

    We've had our app suspended since we sell tobacco products. We were selling tobacco products in a legal and local law complaint way for many years, we warn the user that it is prohibited to sell tobacco to anyone under the age of 21, and we require the driver to check the customer's ID when delivering the tobacco products.

    Right now we're removed all our tobacco products on our app and are trying to appeal the suspension. Google suggests that we reupload the app under a new app and package name, but we'll be going through the hassle of informing the existing users who have the original to download a new app, and might have to accept that some users will refuse to download the new app.

    Since the issue was a content issue, we've already taken the measure to remove all tobacco products and this should be reflected on existing users. Is there a chance for us to retain our existing package name and app name?

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

    Are instant apps opt-in for the user?

    Posted: 06 May 2020 08:23 AM PDT

    I couldn't find anything conclusive in the documentation but are Instant Apps (that are triggered via an App Link) an opt-in feature for the user? Currently, the setting for this seems to be buried in Settings -> Google -> Account Services -> Google Play Instant -> Upgrade web links. This value was off by default -- at least for me -- so I wonder if that is the default for all users?

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

    No comments:

    Post a Comment

    Fashion

    Beauty

    Travel