• Breaking News

    [Android][timeline][#f39c12]

    Wednesday, January 31, 2018

    Clean architecture on Android — Kotlin, Feature Modules, MVVM (Sealed classes/Mediator Live Data), Architecture Components, View Slices and BDD tests. Android Dev

    Clean architecture on Android — Kotlin, Feature Modules, MVVM (Sealed classes/Mediator Live Data), Architecture Components, View Slices and BDD tests. Android Dev


    Clean architecture on Android — Kotlin, Feature Modules, MVVM (Sealed classes/Mediator Live Data), Architecture Components, View Slices and BDD tests.

    Posted: 31 Jan 2018 07:18 AM PST

    Would be great to get your feedback on the architecture I've come up with, demo project repo link: https://github.com/MojRoid/memes

    Quick blog post detailing the layers: https://medium.com/@mojroid/clean-architecture-on-android-using-feature-modules-mvvm-view-slices-and-kotlin-e9ed18e64d83

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

    Android Studio 3.1 Beta 1 is available

    Posted: 31 Jan 2018 01:49 AM PST

    Improving Android video on News Feed with Litho

    Posted: 31 Jan 2018 10:59 AM PST

    [Tool] Enhance Android sources to include @since and @deprecated tags

    Posted: 31 Jan 2018 06:52 AM PST

    What's new in android?

    Posted: 31 Jan 2018 06:30 AM PST

    I was following the blog posts and talks by great android devs closely a year back but then my placement session in college came and all went to shit. What's new in android? I've not been able to cover the new things released. Last I was actively learning I was looking at RxJava2. I think the new stuff is android architecture components, room and other things around them and kotlin. Am I missing something?

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

    Best Practices for Supporting Enterprise Apps in China?

    Posted: 31 Jan 2018 02:25 PM PST

    The company I work for (in the United States) recently signed a client with a significant number of employees in China. Since then, Android users from that company have been grabbing old versions of our app, which don't work properly, from apk mirror sites because the Google Play store is blocked. We are now looking into hosting the apk ourselves or distributing it through a Chinese app store, but I haven't found much information online on how to best support the Chinese market. If anyone has experience with this I'd really appreciate the insight. Thanks!

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

    I am developing a course on Advanced Android development and I would love your inputs.

    Posted: 31 Jan 2018 02:00 AM PST

    I am making a new course for you on Advanced Android Development and I'd love your input. Just click below to answer 5 very short questions. It only takes 1 minute. https://docs.google.com/forms/d/e/1FAIpQLScIvCMO_lrDWEoJQfOXFO-tfZ9jg5CAYJvhhrJehqS4GjuRYQ/viewform?usp=sf_link P.S. Check out the bonus question if you'd like an early access (It's already 15% complete!).

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

    Help with Dagger2 and MVVM

    Posted: 31 Jan 2018 01:37 PM PST

    Hi,

    (using kotlin btw)

    For the past couple days I've been trying to wrap my head around the MVVM pattern, and using dagger2 for dependency injection. I've followed a handful of tutorial blog posts, and studied several repositories on github. But when it comes to implementing it myself, I just keep coming up short and getting confused.

    So do any of you have some resources you've used? Video tutorials or text is fine. Preferably in kotlin, although I'm sure a java resource would still apply.

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

    Service Locator pattern in Android – Inloop – Medium

    Posted: 31 Jan 2018 09:15 AM PST

    Modeling ViewModel States Using Kotlin’s Sealed Classes

    Posted: 30 Jan 2018 10:08 PM PST

    Testing in-app purchases on Android – Bleeding Edge

    Posted: 31 Jan 2018 03:01 AM PST

    Polishing UI: Android StateListAnimator – AndroidPub

    Posted: 31 Jan 2018 02:57 PM PST

    RxJava Flowables - An introduction. For anyone who is looking forward to doing Reactive programming in Android

    Posted: 30 Jan 2018 10:25 PM PST

    Switching from Native Ads Express to Native Ads Advanced.

    Posted: 31 Jan 2018 02:08 AM PST

    Hey guys, I am running Native Ads Express ads on my app and just read that google "will stop serving ads on March 1, 2018". Since the native ads get much more user interaction than the simple banners I would like to stay with native ads. As far as I understand it Native Ads Advanced is still in closed beta.

    Do you guys have any ideas how to be part oft he closed beta or any other idea how to continue using Native Ads?

    Thank you

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

    Linux Users, what distro are you using with android studio in 2018?

    Posted: 30 Jan 2018 07:53 PM PST

    Few years back I decided to switch over to Ubuntu from Windows when it came to using Studio; best decision ever. Recently my SSD failed and I've been looking at using a new distro for general use, programming, and light gaming (I mainly use Windows for heavy gaming though). I have very little complaints with Ubuntu Gnome, but would just like to try something else out.

    Anyway, I've been looking at Debian as my new distro and would like to ask what are you guys using, and how it's treating you.

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

    Move content to side in Drawer Layout

    Posted: 31 Jan 2018 12:28 PM PST

    The DIY Mobile App Builder & Mobile Website Builder allows you to create beautiful and unique mobile apps and mobile websites visually, without touching a single line of code.

    Posted: 31 Jan 2018 10:55 AM PST

    Steps to get an old project to build

    Posted: 30 Jan 2018 07:26 PM PST

    So I did some android work maybe 3 years ago now, i'm currently tasked with taking an old project no one knows anything about and getting it updated with some new content and bits and pieces.

    So first step is I'm assuming its an eclipse project so I've imported it into the latest Android Studio, which seemed to work with a bunch of notes in the import summary.

    I updated the gradle version in the gradle wrapper and that fixed a gradle error, but now I'm getting error Error:Failed to find target with hash string 'Google Inc.:Google APIs:21' in: /Users/me/Library/Android/sdk

    So I'm still learning about the build process, but i see two build gradle files, one in the main App folder which doesn't have much except for dependencies { classpath 'com.android.tools.build:gradle:3.0.1' }

    Then in the /app/ folder we have more details:

    apply plugin: 'com.android.application' android { compileSdkVersion 21 buildToolsVersion "27.0.3" defaultConfig { applicationId "au.dpi.huntapp" minSdkVersion 16 targetSdkVersion 19 } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' } } } dependencies { compile 'com.android.support:support-v4:21.0.3' implementation 'com.google.android.gms:play-services-maps:11.8.0' compile files('libs/libGoogleAnalytics.jar') compile files('libs/libGoogleAnalyticsV2.jar') compile files('libs/webviewissue17535fix.jar') } 

    I figured this might be as simple as not having installed the API 21, so I went to the android sdk settings and installed Android 5.0 Lollipop, showing API level 21, but the gradle sync still has the same error.

    Can I get some assistance in getting this project to build so I can figure out what it does :) . Please advise what other information I can give to help

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

    No comments:

    Post a Comment

    Fashion

    Beauty

    Travel