• Breaking News

    [Android][timeline][#f39c12]

    Thursday, February 15, 2018

    The app's full description mentions other brands: AngularJS Android Dev

    The app's full description mentions other brands: AngularJS Android Dev


    The app's full description mentions other brands: AngularJS

    Posted: 15 Feb 2018 05:58 AM PST

    API 27 Google Play System Image (rev 3) is now available

    Posted: 15 Feb 2018 11:15 AM PST

    Why force gradle upgrade with studio upgrade?

    Posted: 15 Feb 2018 02:15 PM PST

    Where I work we have apps that were built with older versions of gradle and still need support. Yet because every major upgrade of studio forces a project update, we are have to use two different IDEs. I don't understand why the developers of Android Studio do this. Doesn't gradle have a mechanism to support building with older versions? Anyone have any insight as to why?

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

    Android Data Binding Library Examples

    Posted: 15 Feb 2018 09:34 AM PST

    Experience with other Android markets?

    Posted: 15 Feb 2018 08:43 AM PST

    Curious if anyone has any wise words regarding their experience with other Android markets?

    I always see the usual suspects come up when looking up popular markets (Google Play, Amazon, SlideMe, Opera, Samsung, etc), but personal experience tells a different story.


    In my 2+ years of offering a free/paid app that does well:

    Google Play does very well in downloads + sales. Still about 1/3, if that, in terms of what Apple sales are, but I understand why.

    Amazon, a fraction of Google Play, but still steady.

    SlideMe absolute trash for downloads, and 0 sales after a year+. Opera I didn't even both with paid apps, even more abysmal downloads for free apps. Gave up on both a few months back.

    Now eyeing them again, maybe I'm doing something wrong, etc, but unsure if I should bother.


    What are your experiences with these and other stores? Worth your time and effort?

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

    Android Studio 3.2 Canary 3 is now available

    Posted: 15 Feb 2018 04:25 PM PST

    Android Studio 3.1 Beta 3 is now available

    Posted: 15 Feb 2018 04:25 PM PST

    Flutter — 5 reasons why you may love it

    Posted: 15 Feb 2018 02:28 PM PST

    Setting up GitLab CI for Android projects

    Posted: 15 Feb 2018 10:01 AM PST

    MAX SALARY in your city

    Posted: 15 Feb 2018 01:31 PM PST

    What is max salary for an Android developer who is an individual contributor and not a manager in your city?

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

    How to build Android Apps with Pattern Lock security model?

    Posted: 15 Feb 2018 05:32 AM PST

    I'm preparing to build an apps with pattern lock security system, the purpose I build this apps is to implement cryptography in the Pattern Lock (9 dots or another pattern) and the function of this application is to hide inappropriate apps from child. Does anyone have some reference? or, maybe little trick in a code? I hope there is a sample to build

    If someone is confused what I ask, please reply it thank you very much

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

    Alright, I'm confused. Since when can I not add text to my text views?

    Posted: 15 Feb 2018 12:09 PM PST

    Summary of Kotlin Programmer Dictionary

    Posted: 14 Feb 2018 11:23 PM PST

    10 Android App Testing Mistakes to Avoid

    Posted: 15 Feb 2018 04:55 AM PST

    How can I develop software to change the camera on other apps?

    Posted: 15 Feb 2018 07:10 AM PST

    I am new to app development and not sure how to approach my next problem, so would love literally any help.

    I have designed a camera, and in particular this camera runs with a filter over it, changing the image slightly. I would really like to have snapchat etc. to have this filter applied to it when I try to send a photo - do you know if this is possible?

    I am aware that snapchat has its own camera, but would I be able to essentially have this filter infiltrate the camera?

    Thanks for any help!

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

    APK build but Jetty does not run in Android

    Posted: 15 Feb 2018 03:04 AM PST

    Hello

    Please forgive me if this is not the place to ask for Android coding help.
    This is my first project and I am really stuck.

    I am trying to embed Jetty server 9.0.0.v20130308 in Android (the latest Jetty in android, returns a dex error). But it is not working.

    I am trying to make Jetty listen to a custom incoming HTTP method, NOTIFY. It works properly in desktop, now I am trying to import it to Andoird.

    The code does not return any error in Android studio. I can build the APK. but for god knows, it does not run in phone. There is even nothing in adb log as well.

    Here is my code.

    package com.example.arjun.hellotest; import android.util.Log; import java.io.IOException; import java.io.BufferedReader; import java.util.Enumeration; import java.util.HashMap; import java.util.Map; import javax.servlet.ServletException; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.eclipse.jetty.server.Request; import org.eclipse.jetty.server.Server; import org.eclipse.jetty.server.handler.AbstractHandler; import org.eclipse.jetty.server.HttpConnectionFactory; public class HelloWorld extends AbstractHandler { @Override public void handle( String target, Request baseRequest, HttpServletRequest request, HttpServletResponse response ) throws IOException, ServletException { // Declare response encoding and types // implementation files('libs/jetty-all-uber.jar') response.setContentType("text/html; charset=utf-8"); // Declare response status code response.setStatus(HttpServletResponse.SC_OK); // Write back response response.getWriter().println("<h1>Hello World</h1>"); // Inform jetty that this request has now been handled baseRequest.setHandled(true); String requestMethod = baseRequest.getMethod().toUpperCase(); StringBuffer jb = new StringBuffer(); String line = null; Map<String, String> map = new HashMap<String, String>(); try { switch (requestMethod) { case "POST": // do post logic Log.w("JettyTest", "Handle POST request"); break; case "NOTIFY": // do notify logic Log.w("JettyTest", "Handle NOTIFY request"); Enumeration headerNames = request.getHeaderNames(); while (headerNames.hasMoreElements()) { String key = (String) headerNames.nextElement(); String value = request.getHeader(key); map.put(key, value); } for (String key : map.keySet()) { Log.w("JettyTest", key + ": " + map.get(key)); } Log.w("JettyTest", "Remote: "+request.getRemoteHost()+":"+request.getRemotePort()); BufferedReader reader = request.getReader(); while ((line = reader.readLine()) != null) jb.append(line); Log.w("JettyTest", jb.toString()); break; case "GET": // do get logic Log.w("JettyTest", "Handle GET request"); break; // so on..... default: // do default Log.w("JettyTest", "NOT IMPLEMENTED"); } } catch (Exception e) { e.printStackTrace(); } } public static void main( String[] args ) throws Exception { //Server server = new Server(8080); //server.setHandler(new HelloWorld()); //server.start(); //server.join(); Runnable runnable = new Runnable() { @Override public void run() { Server server = new Server(8082); try { server.getConnectors()[0].getConnectionFactory(HttpConnectionFactory.class); server.setHandler(new HelloWorld()); server.start(); Log.w("JettyTest", "Server Started"); server.join(); } catch (Exception e) { e.printStackTrace(); } } }; new Thread(runnable).start(); } } 

    Build.gradle file

    apply plugin: 'com.android.application' android { compileSdkVersion 26 defaultConfig { multiDexEnabled true applicationId "com.example.arjun.hellotest" minSdkVersion 22 targetSdkVersion 26 versionCode 1 versionName "1.0" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } } repositories { mavenCentral() } dependencies { implementation fileTree(include: ['*.jar'], dir: 'libs') implementation 'com.android.support:appcompat-v7:26.1.0' implementation 'com.android.support.constraint:constraint-layout:1.0.2' implementation 'com.android.support:design:26.1.0' testImplementation 'junit:junit:4.12' androidTestImplementation 'com.android.support.test:runner:1.0.1' androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1' implementation 'org.eclipse.jetty:jetty-webapp:9.0.0.v20130308' } 

    In AndroidManifest

    <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /> <uses-permission android:name="android.permission.CHANGE_WIFI_MULTICAST_STATE" /> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> <uses-permission android:name="android.permission.WAKE_LOCK" /> <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> 

    It builds the APK. I was able to install it in Android 6.0. But nothing happens. I can't confirm if the server started. There is no log entry in adb.

    What am I doing wrong. What is the correct way to make Jetty server run in Android?

    Please help.

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

    Looking for electric sheep

    Posted: 15 Feb 2018 05:19 AM PST

    Does anyone remember electric sheep image from times when android.git.kernel.org was down due to root attack in 2011? It was stuffed sheep with wires and indicator lights. Wanna use it as desktop background.

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

    Hi everyone, I was playing around with Glide and in the process though I would make a very basic soundboard app. The is very small, but includes Glide, rxBindings, and shows a simple application of the MediaPlayer.

    Posted: 14 Feb 2018 05:12 PM PST

    No comments:

    Post a Comment

    Fashion

    Beauty

    Travel