[android-developers] Android internals

2014-06-16 Thread ANKUR GOEL
Hi all , i wanna some tutorials and videos where i can see how the android internal works , which part of OS reads the manifest , how the intent service works internally etc Thanks -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to

[android-developers] Re: AndroidStudio - Wipe data between deploys

2014-06-16 Thread Streets Of Boston
There is, to my knowledge, no such thing as a 'wiping all data of my app' programmatically . However, you can program something similar yourself. Add a setting (SharedPreferences setting) to your app that stores the version-number of your app that the user is running. Upon start-up, read this

[android-developers] Android Studio / Gradle - how to force use of aar dependency when both jar and aar are available?

2014-06-16 Thread Paul LeBeau
Hi all I have an Android library project and, up till now, I have been pushing jar files to the Maven Central repository. For the latest release I have pushed a .aar file as well for use by Android Studio users. However when I try to test the aar file in a project, it doesn't work. Android

[android-developers] Voice search in app, with Global Search false, going global as of 4.4.3

2014-06-16 Thread Kim
We are using the Search function inside our app, to initiate a search on our server. As of 4.4.3, the search still works fine when inputting the search term in the Search Dialog using the Android keyboard, but when using Voice search, it is apparently ignoring the Global Search parameter,

[android-developers] Re: Android Studio / Gradle - how to force use of aar dependency when both jar and aar are available?

2014-06-16 Thread Paul LeBeau
Okay. Finally worked out that the solution seems to be to use the following format for the dependency entry: compile group: 'com.mydomain', name: 'mylibrary', version: '1.2.2-beta-1', type: 'aar' On Tuesday, June 17, 2014 2:27:19 AM UTC+12, Paul LeBeau wrote: Hi all I have an