• Breaking News

    [Android][timeline][#f39c12]

    Monday, December 3, 2018

    Weekly "who's hiring" thread! Android Dev

    Weekly "who's hiring" thread! Android Dev


    Weekly "who's hiring" thread!

    Posted: 03 Dec 2018 04:45 AM PST

    Looking for Android developers? Heard about a cool job posting? Let people know!

    Here is a suggested posting template:

    Company: <Best Company Ever>
    Job: [<Title>](https://example.com/job)
    Location: <City, State, Country>
    Allows remote: <Yes/No>
    Visa: <Yes/No>

    Feel free to include any other information about the job.

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

    Weekly Questions Thread - December 03, 2018

    Posted: 03 Dec 2018 02:57 AM PST

    This thread is for simple questions that don't warrant their own thread (although we suggest checking the sidebar, the wiki, or Stack Overflow before posting). Examples of questions:

    • How do I pass data between my Activities?
    • Does anyone have a link to the source for the AOSP messaging app?
    • Is it possible to programmatically change the color of the status bar without targeting API 21?

    Important: Downvotes are strongly discouraged in this thread. Sorting by new is strongly encouraged.

    Large code snippets don't read well on reddit and take up a lot of space, so please don't paste them in your comments. Consider linking Gists instead.

    Have a question about the subreddit or otherwise for /r/androiddev mods? We welcome your mod mail!

    Also, please don't link to Play Store pages or ask for feedback on this thread. Save those for the App Feedback threads we host on Saturdays.

    Looking for all the Questions threads? Want an easy way to locate this week's thread? Click this link!

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

    December Androidx Update

    Posted: 03 Dec 2018 12:24 PM PST

    Regret: A library for apps that wants to implement an Undo/Redo feature in their apps and it works exactly like in Photoshop and Office Word etc.

    Posted: 03 Dec 2018 11:22 AM PST

    Kotlin Coroutines patterns and anti-patterns

    Posted: 03 Dec 2018 03:18 AM PST

    My Google Play Console Account was terminated for Prior Violations. Without any Prior accounts.

    Posted: 03 Dec 2018 02:08 PM PST

    November 29,

    Was making a new version of my last (well, I did not know it back then) logic game. Had to gain access to the sites that are not accessible in my country, to get info about compile error, so I've turned on VPN in my Opera Browser. Was coding till 2a.m. so I've got a bit tired and sleepy, and didn't think to turn VPN off before logging to Console. Aaaand, it's done. My account is linked to some Abdul, Mehmed, Sebastian.. or maybe even Sebastianette, and I can't prove google that I am me, not any of them. Gogel Zubord have rendered themselves absolutely useles in resolving this issue, or even giving any info about what happened. Human Beings that are out there in Chat are really sorry, but can't help. Bots that reject appeals couldn't care less.

    So. I'm no longer Tony. I am Sebastianette now, with four kids, and five husbands. Gonna tell it to my parents, they will be surprised. Thak you, Gugl for oppening my eyes, okay?

    One second you're a guy with a dream,

    Another second -- you're done for good.

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

    New androidx library to handle remote callbacks

    Posted: 03 Dec 2018 02:55 PM PST

    Rewriting Snapchat - code from 2012 to modular modern standards - Droidcon SF 2018

    Posted: 03 Dec 2018 02:27 PM PST

    The CommonsBlog — "Elements of Kotlin" Version 0.1 Released

    Posted: 03 Dec 2018 06:24 AM PST

    Why does my game let you Update it in perpetuity?

    Posted: 03 Dec 2018 09:32 AM PST

    I released a new update for my game, and after successfully updating it, it just says "UPDATE" again, instead of "PLAY". And you can click update.

    And it will update again.

    Then it will let you update it again and again...

    super confused, could use all the help i can get!

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

    App name & game mechanic "stolen"

    Posted: 03 Dec 2018 01:42 AM PST

    TL/DR Someone has uploaded an app to the app store with exact name and game mechanic of a game I've been working on and plan to publish in the next month or so. Do I have any rights here?

    I've been working on an app game on and off for a while, it's a puzzle game with a "new" mechanic and an up until now unused name.

    After having not worked on the game for a little over a year, I just picked it up the other day and decided to finish it.

    I published BETA version of the game ages ago, and did a quick google search to check if there was anything useful I should take into account as I finish the app. Instead I came across an exact copy of my app (it looks different, and I'm pretty sure noone has copied my actual code) with the same name I was using.

    Can I do anything to shut these people down? They've not got any downloads yet and doesn't look like they've done much in the way of promoting the app - just really annoying :)

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

    Creating and Publishing an Android Library

    Posted: 03 Dec 2018 01:17 PM PST

    Announcing Google Play’s “Best of 2018”

    Posted: 03 Dec 2018 08:06 AM PST

    On a trademark violation - does Google tell you who files the complaint?

    Posted: 03 Dec 2018 12:26 PM PST

    I have a trademark on my app name and some apps are using the name on their app name and/or the description of their app. If I file a complaint with Google, will it tell them I'm the one who filed that complaint?

    I'm asking because the last time I filed a complaint against someone (on iOS), they threatened me to hire one of those fake review services and give me lots of 1 star reviews. They never went through with it but still, it got me kind of scared of that.

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

    How to pass Context into Adapter with Dagger 2?

    Posted: 03 Dec 2018 09:32 AM PST

    I'm learning DI/MVP/Retrofit/Rx base of this tutorial Dagger 2 Retrofit MVp .

    And everything work perfect but I've got problem with using context in Adapter which if it wasn't just about intent i could use some method to open activity without using context, but i'm using library that named Picasso
    .

    @Override public void onBindViewHolder(@NonNull final BookViewHolder holder, final int position) { holder.txt_price.setText(new StringBuilder(bookList.get(position).Price).append(" تومان").toString()); holder.txt_drink_name.setText(bookList.get(position).Name); // Picasso.with(context) // .load(bookList.get(position).Link) // .into(holder.img_product); } 

    Before DI i was using Context context
    but now i can't just add this and use it for my Picasso library, which it's not really matter to use it or not, i just wanna know how to pass context

    @Inject public BookAdapter(ClickListener clickListener) { this.clickListener = clickListener; bookList = new ArrayList<>(); } 

    Everything I've did was base on above tutorial which the only thing is changed was my Picasso that was using context before.

    I'm learning this, and i'm pretty fine with other steps i'm trying to figure out what should i do to make this possible, and should i create another module or whatever that can help.

    Thanks.

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

    A Question in MVVM

    Posted: 03 Dec 2018 04:35 AM PST

    Hi guys,

    I am trying to understand MVVM in Android Architecture Components, and I am struggling to understand some points, that I find illogical to some extent.
    The first is why at all using the Viewmodel class while we can use repository or rxJava based repository directly inside the activity, that's is in addition to data binding?

    So, for example, in this google sample:
    https://github.com/googlesamples/android-architecture-components/blob/master/GithubBrowserSample/app/src/main/java/com/android/example/github/ui/user/UserFragment.kt
    They wrote this function:

    private fun initRepoList() {
    userViewModel.repositories.observe(viewLifecycleOwner, Observer
    { repos -> adapter.submitList(repos?.data)})}

    I couldn't really comprehend why it is "userViewModel.repositories.bla bla not just
    userRepositories.bla bla.

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

    How do you organize your data?

    Posted: 03 Dec 2018 01:30 PM PST

    Do you often store your data using SQLite? What happens when someone is using an outdated version of your database and then updates the app, do you wipe everything just for safety? Is it mandatory (at least practically) to use Rx for Android Development?

    I come from a web world where the development is beautiful and almost an emotional connection. How does it work in Android? I've been developing my first Android app and I encountered many decision problems, which I think it's normal since you're always wondering "is it the right choice?" And thinking about the future of your application. What would you did when it was you that helped you skip up these problems.

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

    Teach Kotlin to play well with Java - Optimization tips for Interoperability

    Posted: 03 Dec 2018 04:21 AM PST

    Using the Kotlin stdlib in Java code – victoriagonda – Medium

    Posted: 03 Dec 2018 10:11 AM PST

    How to use "Copy crash log URL"? It gives me some text like "isuyozekog" but I don't how to use it. I'm running a 9.0 Pie Experience custom rom.

    Posted: 02 Dec 2018 06:43 PM PST

    Admob ads are not working in smartphone, But its freely working Emulator. How?

    Posted: 03 Dec 2018 06:54 AM PST

    I am developing an app for android.. In which, I place Intrestial ads, when app open, I have also placed banner ads. - When I used Test Ads Admob Id. Its work in smartphone as well as in Emulator. But When Replace my own admob id. It only work in Emulator, Its not showing in my smartphone...

    Since, I am beginner, I thought after app publishing it will work. I have published my app tomorrow, But still its not working...

    I unable to get what happening.. Please help me... Thanks...

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

    New to App making

    Posted: 02 Dec 2018 06:05 PM PST

    So total newb when it comes to making apps. Basically i downloaded an app. It wasn't what i exactly wanted but could be much more. So here i am now and i want to build my app. Now when i google how to get started building my own android app i get 20 billion link, websites, blogs , etc etc. What the most effective way for me to go about this?+

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

    Call/SMS permission email from Google Play

    Posted: 03 Dec 2018 01:01 AM PST

    Does Google Play send out notices if your app uses any call or sms permissions? If you did get an email, is your app a default call/sms handler or a normal app?

    Thanks.

    PS: i know i had a similar post in the past..but i am looking for more answers and whether or not Gplay sending out notices is consistent or not.

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

    Is there a way to spoof/override android's light sensor values

    Posted: 03 Dec 2018 01:38 AM PST

    I own a S7 edge with screen damage and unless it is in direct light or under a flashlight, the screen flickers uncontrollably black and white. I have tried using Velis Auto Brightness, turning off Samsung's auto-brightness function and trying to use the Velis Auto Brightness app built in "use devices boost brightness" which is set at 0 lux, and any vale of 0 or greater, should put the phone in max brightness mode which it does not. I also have tired the "Screen-on sensor override function" set to 60,000 lux which is the max value the device will read, and this also failed to work. Moreover I also noticed when I turn off the auto brightness option in settings, but it turns itself back on when I put a flashlight over the light sensor. So to reiterate I need help to find a way to spoof/override the values of the light senor to use my phone without giving myself a headache.

    THX :)

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

    No comments:

    Post a Comment

    Fashion

    Beauty

    Travel