[android-developers] Re: Android Studio: MotionEvent - touch tracking

2021-05-13 Thread Horace Johnson
Looks like this user group is all about Employers looking for employess.  I 
got fooled by the description so Moderator go ahead and delete this post.  
I have moved my question to Stack Overflow.

On Thursday, May 13, 2021 at 4:57:34 AM UTC-4 Horace Johnson wrote:

> Hi,
>
> I'm new to Java and Android Studio but handling it quite well because of 
> my years of programming with python (basic concepts carry from language to 
> language).
>
> I have a practice project set up and the only propose of this project is 
> for me to learn how to do things the java/android studio way, logic wise.
>
> So logically, the last python based api I used, there was a way to issue 
> your own ID to touches and keep track of those touches; therefore you knew 
> if a touch still existed or not.
>
> That's where I am right now.  I know how to get the touch ID and then get 
> the Index that holds the touch data.  Basically I'm using a For Loop on the 
> motion event to process all touches to the screen.
>
> Here's the thing
>
> Lets say I have 10 touches to process and what I do in a loop is basically 
> collect the info of the touches and store them in a hashtable, so I can 
> then later process all the touches in the hashtable.
>
> So as I pull a touch data from the hashtable to process, I want to first 
> check to see if the touch still exits.  I'm guessing once a touch enters 
> the "UP" state, it goes out of scope after that because a touch is over 
> after release.
>
> Sure I can just check the "Action" to see if it's equal to "UP" but if the 
> touch doesn't exits anymore, that would raise and exception...right?
>
> What I thought about doing was, calling "getPointerCount" again, looping 
> through and getting the IDs again and see if the ID of a touch in my 
> hashtable still exits in the MotionEvent and if the ID exists and the 
> "Action" is still equal to "DOWN", then process the touch.  Otherwise, if 
> the ID does not exists or the "ACTION" is equal to "UP", do a release 
> button event if needed or just delete the touch from my hashtable because 
> it doesn't exits anymore.
>
> I can't help but get the feeling of redundancy though when considering 
> that approach.
>
> Is there a way or method I don't know about that allows you to check if a 
> touch still exits before you process actions relating to it?
>
> I was thinking just now  Well, kind of guessing that, if you have five 
> touches that hit the screen and one of the touches triggers the opening of 
> a menu and that button had higher priority over the other four touches, you 
> could simply ignore the other for touches for that frame and open the menu 
> and in the next frame of the app, if the other four touches are still down, 
> you can deal with them then accoring to their priority.  But then 
> again, the touch could still exists in the next frame but the "Action" may 
> be "UP" or "MOVE" instead of down, thus allowing one to write code for a 
> release or move event.  With this thought, storing touch data in a 
> hashtable is really not needed then, granted a touch this is on action "UP" 
> will go out of scope in the very next frame (I'm guessing).
>
> ..hum..
>
> Maybe I'm just over thinking it.
>
>
> Forgive any "typos", eyes are that super any more.
>
>
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/0b895dfc-207d-45d1-8283-ca42efcee9e8n%40googlegroups.com.


[android-developers] Re: Android Location APIs to determine location of different devices using same Google user account

2019-11-13 Thread Frenchy Leclaire


On Thursday, May 3, 2018 at 11:24:02 PM UTC-7, sourabh banerjee wrote:
>
> I am new to Android APIs and Android app development.
>
>
> I am looking for recommendations on right API Android provides to achieve 
> the following:
>
>1. I have a number of devices running Android. All of them have the 
>same Google user account.
>2. Can I query the location co-ordinates for each of these devices, 
>from another device where same user account is active?
>
> *Topology:*
>
>- 10 devices setup to use same Google account.
>- 8 devices on cellular network
>- Other 2 on Wi-Fi.
>- Only 1 device (1 of 2 on Wi-Fi), needs to find location of 9 others.
>
> *Note:* I see there is a share my location feature that Google map 
> provides. But, I do not have option to use it as my devices aren't phones 
> with display.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/c5a94f92-8e8c-4265-8fc9-ff7d96978dfd%40googlegroups.com.


[android-developers] Re: Android (mobile operating system) Details

2019-07-21 Thread Pakleni Kauboj

I am intrested!
среда, 17. јул 2019. 20.07.49 UTC+2, Mithun sarkar је написао/ла:
>
> *Android* is a mobile operating system developed by Google. It is based 
> on a modified version of the Linux kernel and other open source software, 
> and is designed primarily for touchscreen mobile devices such 
> as smartphones and tablets. In addition, Google has developed Android 
> TV for televisions, Android Auto for cars, and Wear OS for wrist watches, 
> each with a specialized user interface. Variants of Android are also used 
> on game consoles, digital cameras, PCs and other electronics.
> Initially developed by Android Inc., which Google bought in 2005, Android 
> was unveiled in 2007, with the first commercial Android device launched in 
> September 2008. The current stable version is Android 9 "Pie", released in 
> August 2018. Google released the first beta of the next release, Android Q, 
> on Pixel phones in March 2019. The core Android source code is known as 
> Android Open Source Project (AOSP), which is primarily licensed under 
> the Apache License.
> Android is also associated with a suite of proprietary software developed 
> by Google, called Google Mobile Services(GMS), that frequently comes 
> pre-installed on devices. This includes core apps such as Gmail, 
> the application store/digital distribution platform Google Play and 
> associated Google Play Services development platform, and usually includes 
> the Google Chrome web browser and Google Search app. These apps are 
> licensed by manufacturers of Android devices certified under standards 
> imposed by Google, but AOSP has been used as the basis of competing Android 
> ecosystems such as Amazon.com's Fire OS, which use their own equivalents 
> to Google Mobile Services.
> Android has been the best-selling OS worldwide on smartphones since 2011 
> and on tablets since 2013. As of May 2017, it has over two billion monthly 
> active users, the largest installed base of any operating system, and as of 
> December 2018, the Google PlayRead More 
> 
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/8fe4c12d-d468-42d8-ad63-9fa4bdc4fcc8%40googlegroups.com.


[android-developers] Re: Android app project

2018-04-28 Thread Tara-Android Developer

>
> hi, 
>
 I am working as android developer in India. Really very much 
interested to work upon your project. You can use android sdk tool to build 
android app. 

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/a40b6104-d822-4995-83da-7755056ba9eb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android Constraint Layout Inflatation Exception

2017-09-19 Thread Sumit Agrawal


On Tuesday, September 12, 2017 at 8:24:46 PM UTC+5:30, Sumit Agrawal wrote:
>
> I used Constraint layout for an activity creation. No compile time error 
> or an exception but on run time, an error occures,
>
> 09-12 20:19:57.938 8240-8240/com.easy.sumit.lifeline E/AndroidRuntime: 
> FATAL EXCEPTION: main
>   
>  Process: com.easy.sumit.lifeline, PID: 8240
>   
>  java.lang.RuntimeException: Unable to start activity 
> ComponentInfo{com.easy.sumit.lifeline/com.easy.sumit.lifeline.activities.MainActivity}:
>  
> android.view.InflateException: Binary XML file line #11: Binary XML file 
> line #2: Error inflating class android.support.constraint.ConstraintLayout
>   
>  at 
> android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2817)
>   
>  at 
> android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2892)
>   
>  at android.app.ActivityThread.-wrap11(Unknown Source:0)
>   
>  at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1593)
>   
>  at android.os.Handler.dispatchMessage(Handler.java:105)
>   
>  at android.os.Looper.loop(Looper.java:164)
>   
>  at android.app.ActivityThread.main(ActivityThread.java:6541)
>   
>  at java.lang.reflect.Method.invoke(Native Method)
>   
>  at com.android.internal.os.Zygote$MethodAndArgsCaller.run(Zygote.java:240)
>   
>  at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:767)
> 
> Caused by: android.view.InflateException: Binary XML file line #11: Binary 
> XML file line #2: Error inflating class 
> android.support.constraint.ConstraintLayout
> 
> Caused by: android.view.InflateException: Binary XML file line #2: Error 
> inflating class android.support.constraint.ConstraintLayout
> 
> Caused by: java.lang.ClassNotFoundException: Didn't find class 
> "android.support.constraint.ConstraintLayout" on path: DexPathList[[zip 
> file "/data/app/com.easy.sumit.lifeline-W2en1e4kr7lnHhHBVh4YQg==/base.apk", 
> zip file 
> "/data/app/com.easy.sumit.lifeline-W2en1e4kr7lnHhHBVh4YQg==/split_lib_dependencies_apk.apk",
>  
> zip file 
> "/data/app/com.easy.sumit.lifeline-W2en1e4kr7lnHhHBVh4YQg==/split_lib_slice_0_apk.apk",
>  
> zip file 
> "/data/app/com.easy.sumit.lifeline-W2en1e4kr7lnHhHBVh4YQg==/split_lib_slice_1_apk.apk",
>  
> zip file 
> "/data/app/com.easy.sumit.lifeline-W2en1e4kr7lnHhHBVh4YQg==/split_lib_slice_2_apk.apk",
>  
> zip file 
> "/data/app/com.easy.sumit.lifeline-W2en1e4kr7lnHhHBVh4YQg==/split_lib_slice_3_apk.apk",
>  
> zip file 
> "/data/app/com.easy.sumit.lifeline-W2en1e4kr7lnHhHBVh4YQg==/split_lib_slice_4_apk.apk",
>  
> zip file 
> "/data/app/com.easy.sumit.lifeline-W2en1e4kr7lnHhHBVh4YQg==/split_lib_slice_5_apk.apk",
>  
> zip file 
> "/data/app/com.easy.sumit.lifeline-W2en1e4kr7lnHhHBVh4YQg==/split_lib_slice_6_apk.apk",
>  
> zip file 
> "/data/app/com.easy.sumit.lifeline-W2en1e4kr7lnHhHBVh4YQg==/split_lib_slice_7_apk.apk",
>  
> zip file 
> "/data/app/com.easy.sumit.lifeline-W2en1e4kr7lnHhHBVh4YQg==/split_lib_slice_8_apk.apk",
>  
> zip file 
> "/data/app/com.easy.sumit.lifeline-W2en1e4kr7lnHhHBVh4YQg==/split_lib_slice_9_apk.apk"],nativeLibraryDirectories=[/data/app/com.easy.sumit.lifeline-W2en1e4kr7lnHhHBVh4YQg==/lib/x86,
>  
> /system/lib, /system/vendor/lib]]
>   
>  at dalvik.system.BaseDexClassLoader.findClass(BaseDexClassLoader.java:93)
>   
>  at java.lang.ClassLoader.loadClass(ClassLoader.java:379)
>   
>  at java.lang.ClassLoader.loadClass(ClassLoader.java:312)
>   
>  at android.view.LayoutInflater.createView(LayoutInflater.java:606)
>   
>  at 

[android-developers] Re: Android Studio help !

2017-09-09 Thread Олег Сакун

In Main Window try :File -   Project Structure ---  SDK Location



суббота, 9 сентября 2017 г., 8:32:57 UTC + 3 пользователь Da Man написал:
>
> Я использую андроид-студию в течение нескольких месяцев без 
> каких-либо проблем. Но недавно произошла 
> ошибка при создании нового класса. У меня тоже есть интеллект, он работает 
> нормально. 
> Я искал в Интернете и пробовал все, но ничего не работало. Я попытался 
> переустановить студию Android, но он говорит, что эта IDE работает на jre 
> вместо 
> полного jdk. Переменные окружения не должны быть проблемой, поскольку я 
> использовал студию Android раньше, чем произошла ошибка, и я 
> ничего не изменил. Также он говорит, что «эта версия не совместима с 
> версией окон, которые вы используете». Но как это возможно, я 
> повторно установил из той же самой и только настройки, которую я имею для 
> 32-битных окон. Любая 
> помощь будет оценена по достоинству. 
>
>
>
> - 
> Отправлено с: http: //android.2317887.n4. nabble.com/Android-Developers- 
> f2.html  
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/42fa48a9-ed33-4c5f-bc0c-7aeb9a791349%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android O - Location and Wifi Manager behavior

2017-09-04 Thread Abdelhakim Akodadi
Here is the like to the document talking about the limitations.

https://developer.android.com/about/versions/oreo/background-location-limits.html

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/2a5c4fbb-b2a6-4817-9f9d-f48feb41d60e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android Mobile Developer-Portland OR

2017-08-17 Thread shiva prasad


On Tuesday, August 8, 2017 at 11:35:58 AM UTC-4, Bhanu Pratap wrote:
>
> *Position:* Android Mobile Developer
>
> *Location:* Portland OR
>
> *Duration:* Contract
>
> *Role\Responsibilities\Experience:*
>
> *MUST HAVE:*
>
> · *3 year+ Android development* experience.
>
> · *5 year+ Java Development* experience.
>
> · Experience working with GIT as source repository.
>
> · JUnit-Coding with test cases.
>
> · Experience working in Agile development environment with 
> distributed teams.
>
> *NICE TO HAVE:*
>
> · Experience with Atlassian tools: JIRA, BitBucket, Confluence.
>
> · Mobile Web development experience – JavaScript, HTML , Web 
> Views.
>
> · iOS experience.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/f016e21e-b003-413a-bcf8-0006f26d2e7e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android app which interacts with BLE devices not working on Chromebook #AndroidAppsOnChromeOS

2017-02-28 Thread Kath Deas
Hi

I have a similar scenario. The app works on tablets and on the Asus Flip 
"onServicesDiscovered" is not being called ...
I'm wondering about posting a question in the chromebook developer forum ...


On Wednesday, February 1, 2017 at 4:44:53 AM UTC, mad...@gunakar.com wrote:
>
> I have an Android app which interacts with custom BLE devices.
>
> I installed this app on my Google Asus Flip Chromebook(Chrome OS version 
> 55, ARC version 3617689) by sideloading the APK onto it. But it is not 
> working as expected.
>
>
> These are the steps I took:
>
>
> 1. Call a startLeScan() which gives the BluetoothDevice as a scanResult.
>
> 2. Call the connectGatt() method, and the device is connected and in the 
> onConnectionStateChange() callback, get a handle to the BluetoothGatt. 
>
> 3. Call the discoverServices.
>
> 4. After that, the onServicesDiscovered() callback is hit as expected with 
> status = GATT_SUCCESS However gatt.getServices returns an empty list when 
> running on Chromebook. When running on Android device (API 19 to API23) I 
> get BluetoothGattService handles to all the services supported by my BLE 
> device.
>
>
> Which leads me to suspect the BLE implementation on ARC on Chromebook.
>
> Has anybody else faced this issue? Is anyone using Android BLE APIs on 
> Chrome OS?
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/362f34ac-6b7a-420d-8918-b3d5c3f1adc1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android webview cannot load certain page possibly due to rendering issue

2017-02-23 Thread Tariq Mahmud

Hello doomguy;
Did you managed to solve this issue? i am facing kind of similar problem.

On Monday, September 12, 2016 at 10:45:43 PM UTC+8, doomguy wrote:
>
> I have a simple webview to display web pages via the network. It loads 
> most pages fine but whenever I try to load http://www.nytimes.com, it 
> shows up as blank. The logcat at this point is:
>
>
> 09-11 11:26:18.428 10567-10630/com.project.test.webviewtest W/cr_media: 
> Requires BLUETOOTH permission09-11 11:26:18.454 
> 10567-10567/com.project.test.webviewtest W/cr_AwContents: 
> onDetachedFromWindow called when already detached. Ignoring09-11 11:26:18.470 
> 10567-10567/com.project.test.webviewtest I/cr_Ime: ImeThread is not 
> enabled.09-11 11:26:18.486 10567-10650/com.project.test.webviewtest 
> D/OpenGLRenderer: Use EGL_SWAP_BEHAVIOR_PRESERVED: true09-11 11:26:18.512 
> 10567-10657/com.project.test.webviewtest E/libEGL: validate_display:255 error 
> 3008 (EGL_BAD_DISPLAY)09-11 11:26:18.530 
> 10567-10650/com.project.test.webviewtest I/OpenGLRenderer: Initialized EGL, 
> version 1.409-11 11:26:18.538 10567-10657/com.project.test.webviewtest 
> W/VideoCapabilities: Unrecognized profile 2130706433 for video/avc09-11 
> 11:26:18.557 10567-10657/com.project.test.webviewtest I/VideoCapabilities: 
> Unsupported profile 4 for video/mp4v-es09-11 11:26:18.926 
> 10567-10567/com.project.test.webviewtest W/cr_BindingManager: Cannot call 
> determinedVisibility() - never saw a connection for the pid: 1056709-11 
> 11:26:18.946 10567-10567/com.project.test.webviewtest W/cr_BindingManager: 
> Cannot call determinedVisibility() - never saw a connection for the pid: 
> 1056709-11 11:26:18.963 10567-10567/com.project.test.webviewtest 
> W/cr_BindingManager: Cannot call determinedVisibility() - never saw a 
> connection for the pid: 1056709-11 11:26:19.313 
> 10567-10567/com.project.test.webviewtest W/cr_BindingManager: Cannot call 
> determinedVisibility() - never saw a connection for the pid: 1056709-11 
> 11:26:19.315 10567-10567/com.project.test.webviewtest W/cr_BindingManager: 
> Cannot call determinedVisibility() - never saw a connection for the pid: 
> 1056709-11 11:26:19.316 10567-10567/com.project.test.webviewtest 
> W/cr_BindingManager: Cannot call determinedVisibility() - never saw a 
> connection for the pid: 1056709-11 11:26:19.339 
> 10567-10567/com.project.test.webviewtest W/cr_BindingManager: Cannot call 
> determinedVisibility() - never saw a connection for the pid: 1056709-11 
> 11:26:19.438 10567-10628/com.project.test.webviewtest W/chromium: 
> [WARNING:spdy_session.cc(2462)] Received HEADERS for invalid stream 3
>
> My MainActivity :
>
> public class MainActivity extends AppCompatActivity {
>
> private WebView mWebView;
> @Overrideprotected void onCreate(Bundle savedInstanceState) {
> super.onCreate(savedInstanceState);
> setContentView(R.layout.activity_main);
> mWebView = (WebView) findViewById(R.id.activity_main_webview);
> WebSettings webSettings = mWebView.getSettings();
> webSettings.setJavaScriptEnabled(true);
> mWebView.getSettings().setDomStorageEnabled(true);
> mWebView.setWebViewClient(new TestWebViewClient());
> mWebView.loadUrl("http://www.nytimes.com;);}}
>
> My TestWebViewClient:
>
> public class TestWebViewClient extends WebViewClient {
>
> @Overridepublic boolean shouldOverrideUrlLoading(WebView view, String url) {
> view.loadUrl(url);
> return true;}
> @Overridepublic void onReceivedError(WebView view, int errorCode, String 
> description, String failingUrl) {
> Log.i("WEB_VIEW_TEST", "error code:" + errorCode);
> super.onReceivedError(view, errorCode, description, failingUrl);}}
>
> I have added the INTERNET permission in the manifest. So far any other web 
> page I have tried loads up fine. Just this one shows up as blank. I am not 
> sure if the logcat shows the actual error as some things such as the 
> EGL_BAD_DISPLAY and the Cannot call determinedVisibility() errors often show 
> up in the successful loads as well. I don't usually see the last line 
> [WARNING:spdy_session.cc(2462)] Received HEADERS for invalid stream 3 so 
> maybe this is a cause of concern? I do not see any error being received in 
> the onReceivedError in the TestwebViewClient.
>
> Also sometimes (rarely), when I launch the app after a fresh install, the New 
> York Times page title does show up for a second before the view going blank, 
> which probably suggests this is a rendering issue and not a problem with the 
> web view.
>
> I am running this on a physical device running Android M.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion 

[android-developers] Re: Android Things

2017-02-19 Thread Chinmay Gargava
Also, what information/controls for the device (if any) will be available 
remotely to me?

On Sunday, February 19, 2017 at 3:24:42 PM UTC+5:30, Chinmay Gargava wrote:
>
> I'm just figuring out Android Things for a small scale IoT project. One 
> question -  how do i mass update all devices i have deployed with OS and 
> application updates ?
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/ca1a84a5-30a5-4c72-9785-b4108cabb637%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android Things & Google Play Services

2017-02-01 Thread Nicolas Mecozzi
I'll answer my own question,
I change gradle nearby compile version from

compile 'com.google.android.gms:play-services-nearby:9.0.0'
To 
compile 'com.google.android.gms:play-services-nearby:10.0.1'



And it resolved the issue

Le mercredi 1 février 2017 10:55:24 UTC+1, Nicolas Mecozzi a écrit :
>
> Hi, I would like to use Nearby with Google Play Services from an Android 
> Things (ver androidthings_rpi3_devpreview 
> )
>  
> app.
> When I try to instantiate the google play client I got a connection call 
> back with the error code 
>
> *SERVICE_INVALID*
>
>
> *The version of the Google Play services installed on this device is not 
> authentic. *
>
>
> Is it due to the fact that Android Things is still a preview image, or am 
> I missing something ?
>
>
> Instantiation code : 
>
> mGoogleApiClient = new GoogleApiClient.Builder(this)
> .addApi(Nearby.MESSAGES_API)
> .addConnectionCallbacks(this)
> .addOnConnectionFailedListener(this)
> .build();
> mGoogleApiClient.connect();
>
>
> Thanks
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/16d5666f-d8c3-46d3-a532-3c9e61b7164f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android Ble With Advertising

2017-01-28 Thread Deepak Paste
I am also looking for the same program to connect multiple ble devices (HM 
10). Did you find any answer?

On Monday, 22 February 2016 10:42:55 UTC+5:30, vipin...@jaarvis.com wrote:
>
> I am working on BLE and get stuck in finding weather android device can 
> transmit and receive data over BLE at the same time with multiple 
> devices.If it is possible , please provide me the link where I can find 
> these type of stuffs to develop app
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/f895c0cc-2f05-4c64-b024-a43279afd9a5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: [Android] location service (geolocation)

2017-01-25 Thread Yassir Hessane


Le mercredi 25 janvier 2017 17:48:27 UTC+1, Yassir Hessane a écrit :
>
> Hi,
>
> After a small search on the web, I didn't find an issue for my problem.
> I try to run a service with location Manager.
> It's still working fine, but I have two distance when my device is onSleep 
> and when it's wakeUp.
> Approximatively 500 meters between to distance when it's still sleep and 
> 15 meters when it's still running on.
>
> Did anyone have this behavior?
>
> Thanks for you reading.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/38540fb5-5d8a-46b0-b096-7b62ba75c4d1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android OS 4.42 problem

2017-01-24 Thread John Masseria
I had this problem and I had to uninstall the latest update for the Google 
App 
(https://play.google.com/store/apps/details?id=com.google.android.googlequicksearchbox).
 
 I also had to mark the app to not automatically update.

Hopefully Google will correct this in the Google App and not 4.4.2 which 
will require Samsung and ATT to propagate the fix to all affected devices.

Thank you,
John 

On Sunday, January 22, 2017 at 5:21:07 AM UTC-5, IVAN LEE wrote:
>
> Does anyone experiences the following in android phone?
>
> Programme 'com.android.systemui' stop working.
>
> Any solution? Thanks a lot.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/21f1b23f-bb27-4e78-a341-583fc3c128da%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android v6.0.1 SMS directory location

2016-12-01 Thread Ben Bartolomucci


On Thursday, December 1, 2016 at 4:36:13 PM UTC-6, Ben Bartolomucci wrote:
>
> Android v6.0.1 SMS directory location
>
> Can someone copy & paste the exact path? What is the name of the folder?
>
> Is the file structure defined by Google? Samsung? or AT? I own Samsung 
> Galaxy S7
>
> Not sure how soon this question will be answered or when I'll check back 
> on this forum
>
> Goal: I just want to be connect the cell phone to PC andsearch SMS chat 
> logs for specific data like you can with wild card searches in Windows OS
>
> Please drop an Email: the.italian.paradox@gmail 
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/d42879f2-934e-4c50-a21f-dcadf97b6627%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: android wear versus android 5.1 on smartwatch

2016-11-14 Thread Ludo Kustermans
 hi, 
I cannot give you a good answer.
I am actually trying to develop a Wear application on Android Studio, but 
the problem is that a Smartwatch phone (KW88) with android 5.1 , does not 
seem to be recognised in Studio as WEAR.up to now, things are not clear 
to me, and unfortunately, on the Android Developers site, no information 
can be found.
best regards

On Monday, 14 November 2016 14:07:17 UTC+1, st1ar wrote:
>
> I've been wondreing about the same and as far as I figured out Android 
> wear 1.1. is the same as Android wear 5.1.
>  Wear 5.1., technically Andrioid wear  v1.1., but since it’s 
> Lollipop-related 5.1. is the common terminology.
> Am I right?
>
>>
>>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/fba283da-623f-4b8b-bd07-8f05d3b11c94%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: android wear versus android 5.1 on smartwatch

2016-11-14 Thread st1ar
I've been wondreing about the same and as far as I figured out Android wear 
1.1. is the same as Android wear 5.1.
 Wear 5.1., technically Andrioid wear  v1.1., but since it’s 
Lollipop-related 5.1. is the common terminology.
Am I right?

>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/b8d1ce7f-41e6-48bb-90fc-a2298185a416%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android Wear App Development

2016-11-08 Thread Varun Kumar
Hello!!
Hope you are doing great!!
Yes,It is possible 
Please ping me on skype ID:: varun.ku...@appsimity.com

Warm regards
varun kumar


On Tuesday, November 8, 2016 at 6:40:28 PM UTC+5:30, nvvss prasad wrote:
>
> I want to develop custom app in android wear (below 2.0 version). Is it 
> possible to do with below 2.0 versions ?
>
> Note: I already tried app using 2.0 preview version. Its working fine
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/7571a476-6ad9-4495-988a-3410be73d1a4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android and Iphone || Skype or F2F || Wilmington DE

2016-11-02 Thread Vishal Ji Awasthi
Now looking for Android developer with some IOS exp.



On Wed, Nov 2, 2016 at 11:36 AM, Vishal Ji Awasthi <
vishaljiawast...@gmail.com> wrote:

>
> *Android and Iphone*
>
> *Location: Wilmington DE *
>
> *Length: 1 year with the option to extend *
>
> *Interview process: Phone then onsite  (Can do a skype/ coding exercise if
> not local ) *
>
>
>
> Mobile Developer – Needs to have experience with both *Android and Iphone*
> (Of course they know the person will be stronger in one than the other but
> MUST have experience with BOTH )
>
>
>
>
>
> Experience expectation - Code author and craftsman, this engineer will be
> responsible for code delivery in a timely and accurate fashion, and the
> overall review and guidance of sprint and epic goals. They will be tasked
> by the leads to work on specific stories and contribute to sprint planning
> and feature identification.
>
> •Experience in Native Mobile Application development environment
> (iOS/Android), preferably in Agile environment.
>
> •Coding Expectation - 100% of time
>
> •Experience in Good programming practices, Industry standards
>
> •Knowledge of Sonar, Android Lint, XCTest, Espresso, Jenkins or
> Maven, GIT.
>
> •Knowledge of Cocoapods, Artifactory, Homebrew
>
> •Experience with data modeling, relational databases, data
> structures and design
>
> •Agile development experience (e.g. Scrum, Kanban, XP) using Rally.
>
> •Experience with Service-oriented architecture including SOAP,
> REST, JSON and/or Thrift.
>
> •Experience in using JSON, XML, XQuery, XML Schema, XSLT and XPath.
>
> •Expertise in one or more of: Android, Objective C/C++, C#,
> Python, Swift, Perl, etc.
>
> •Expertise in Unit tests, Integration tests and UI tests
>
>
>
>
>
>
>
> *Needed some details for submission process -*
>
>
>
>
>
>
> *Full Legal Name : Contact Number:
> Email ID: Current
> Location   : *
>
> *Relocation   :*
>
>
>
> *Last 4 digit of SSN : Skype ID
>   : DOB(MM/DD): *
>
> *Availability to Join: *
>
> *Work authorization   :*
>
> *Education, University, Year:*
>
>
>
>
>
>
>
>
>
> *Regards*
>
>
>
> *Vishal Ji Awasthi*
>
> *Srimatrix Inc.*
>
> [image: Logo.png]
>
> E-Mail:*vis...@srimatrix.com *
>
> Phone: *214-227-9311(Direct)*
>
> Web: www.srimatrix.com
>
>
>
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAJYEZ98swg4n21jZxxU8xa4XfSiYMZi41hpx1SqdRZkyF80dXQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android Studio 2.1.2 gradle error Unterminated quoted string

2016-11-02 Thread Semyon Medvedik
Same here. aapt 25: Thats the error I'm getting.:

  /home/foreman/Android/Sdk/build-tools/25.0.0/aapt: Syntax error: Unterminated 
quoted string


On Wednesday, October 26, 2016 at 12:31:36 AM UTC+3, hemnath mouli wrote:
>
> I am getting this error too, got any solution?
>
> On Saturday, July 30, 2016 at 5:32:43 PM UTC+5:30, Athwale wrote:
>>
>> Hello,
>>
>> I would like to ask for help.
>> I am trying to run Android Studio 2.1.2 for linux on my 32 bit Linux Mint 
>> 17.3 and I get this error from gradle when I create a new or build a 
>> project:
>> "AAPT err(Facade for 305799): 
>> /home/user/Android/Sdk/build-tools/24.0.1/aapt: 2: 
>> /home/user/Android/Sdk/build-tools/24.0.1/aapt: Syntax error: Unterminated 
>> quoted string"
>>
>> This error is then followed by:
>> "Exception in thread "png-cruncher_8" java.lang.RuntimeException: Timed 
>> out while waiting for slave aapt process, make sure the aapt execute at 
>> /home/user/Android/Sdk/build-tools/24.0.1/aapt can run successfully (some 
>> anti-virus may block it) or try setting environment variable 
>> SLAVE_AAPT_TIMEOUT to a value bigger than 5 seconds"
>>
>> Which I believe occurs because of the first error.
>> I have tried to set SLAVE_AAPT_TIMEOUT to 30 though. Did not help.
>> Aapt is set as executable in build-tools.
>>
>> Any idea how to fix this?
>> Thank you.
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/fbacbba0-9229-43e3-989f-acf19c11d795%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android Studio - Stuck on “Build Gradle” when creating a new project

2016-10-30 Thread Joshua Zhu
try ./gradlew build and see what is going on

在 2016年10月29日星期六 UTC+8下午8:26:41,Sj P写道:
>
>
> down votefavorite 
> 
>
> I have tried different solutions but none of them seem to work for me. I 
> have installed the latest AS on my Windows 7. Everything downloaded 
> fine(I'm not behind any proxy) However, when I try to create a new Project, 
> after I set the name,Activity name(which I live as default) and finish the 
> settings, a message pops up saying "Gradle Build"; It keeps building but I 
> don't know what it's doing.
>
> I've tried the following steps to fix it: -Deleted .gradle so that it 
> creates a fresh one as the original might be corrupted -Downloaded gradle 
> manually and pointed AS to this -Downloaded gradle zip manually and put it 
> in .gradle>wrapper>dists>2.14.1>*numbers*>zip file here
>
> Any idea how to fix this?
>
> Thanks
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/ac06ae2b-1c01-48ec-ae0b-085bf693857b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android Studio 2.1.2 gradle error Unterminated quoted string

2016-10-25 Thread hemnath mouli
I am getting this error too, got any solution?

On Saturday, July 30, 2016 at 5:32:43 PM UTC+5:30, Athwale wrote:
>
> Hello,
>
> I would like to ask for help.
> I am trying to run Android Studio 2.1.2 for linux on my 32 bit Linux Mint 
> 17.3 and I get this error from gradle when I create a new or build a 
> project:
> "AAPT err(Facade for 305799): 
> /home/user/Android/Sdk/build-tools/24.0.1/aapt: 2: 
> /home/user/Android/Sdk/build-tools/24.0.1/aapt: Syntax error: Unterminated 
> quoted string"
>
> This error is then followed by:
> "Exception in thread "png-cruncher_8" java.lang.RuntimeException: Timed 
> out while waiting for slave aapt process, make sure the aapt execute at 
> /home/user/Android/Sdk/build-tools/24.0.1/aapt can run successfully (some 
> anti-virus may block it) or try setting environment variable 
> SLAVE_AAPT_TIMEOUT to a value bigger than 5 seconds"
>
> Which I believe occurs because of the first error.
> I have tried to set SLAVE_AAPT_TIMEOUT to 30 though. Did not help.
> Aapt is set as executable in build-tools.
>
> Any idea how to fix this?
> Thank you.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/d0e67e2b-bf2d-4052-b8d1-9cc94d44%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android/Ios developer at FL

2016-10-17 Thread mobiledevpower


Thank you for reaching out. I have a solid iOS developer for this role:

 

*Consultant Name*

*Current Location*

 

*Relocation*

 

*Availability*

*Total IT*

*Total iOS*

 

*Rate*

*Visa Status*

Darrell S

NY

Anywhere in USA

Immediate

7+

7+

$85/hr

US Citizen

 

Let me know if you would like to consider him for this role. Also, once you 
speak to my consultant, prior to submitting to client, keep me updated on 
client info so I can avoid duplicate submissions.

Thanks,
Aartiee
678-488-1897

On Friday, October 14, 2016 at 12:26:09 PM UTC-4, Bala A wrote:
>
> Job Description: Role: Android/ iOS Developer. Duration: Long Term. 
> Location: Tampa, FL. Responsibilities: Design and build advanced 
> applications for the Android platform Collaborate with cross-functional 
> teams to define, design, and ship new features. Work with outside data 
> sources and API’s Unit-test code for robustness, including edge cases, 
> usability, and general reliability. Work on bug fixing and improving 
> application performance. Continuously discover, evaluate, and implement new 
> technologies to maximize development efficiency. Requirements: Bachelor's 
> Degree in Computer Science (or related field). Solid understanding of the 
> full mobile development life cycle. 5+ years of software development 
> experience including, but not limited to, mature design, coding, testing 
> and debugging skills. 5+ years experience with Java, J2EE technologies & 
> Application Servers. 5+ year of experience developing Android applications. 
> Some IOS development experience, If not then atleast willing to learn. 3+ 
> years experience in development of applications which use Oracle as the 
> primary database of record. 3+ years experience developing applications in 
> a UNIX environment. 3+ years experience with the development and extension 
> of micro services. Required Skills: • Android/IOS Development, Java/J2EE, • 
> Oracle, Cassandra DB, NOSQL • UNIX, Shell Scripting • WebSphere, 
> Apache,Tomcat • WebServices • Micro Services
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/3bb863cb-dd54-4750-88f6-a47fa09b1622%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android AudioRecord forcing another stream to MIC audio source

2016-10-14 Thread Filipe Lins
Man! It's so hard to find any information about it! I don't understand why 
Google isn't letting us work with VOICE_CALL. It is so usefull... >:(

On Tuesday, May 10, 2016 at 6:37:19 AM UTC-3, Required Field wrote:
>
> I now believe other apps might be using Qualcomm audio with CAF. See 
> audio_extn_utils_send_audio_calibration at 
> https://github.com/dtsinc/DTS-Eagle-Integration_CAF-Android-hardware-qcom-audio/blob/master/hal/audio_extn/utils.c
>
>
> and voice_get_incall_rec_snd_device at 
> https://github.com/dtsinc/DTS-Eagle-Integration_CAF-Android-hardware-qcom-audio/blob/master/hal/voice.c
>
>
> I have no C/++ knowledge. How can I find out if I can call these methods 
> from native side? Since other apps can, there must be a way.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/03706f08-31f0-451a-8394-73ddf6b689dd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Re: Android 7.0 Nougat not work with BLE API i.e. BluetoothLeService

2016-10-09 Thread Kalpak Keskar
No. Still having the same issue.

On Sun, Oct 9, 2016 at 12:14 PM, Nadav Gruber 
wrote:

> Hi,
> did you manage to solve this issue?
> having the same problem.
>
> On Monday, September 19, 2016 at 4:29:20 PM UTC+3, Kalpak Keskar wrote:
>>
>> Hello,
>>
>>
>>
>>
>> I am trying to use android BLE API i.e. BluetoothLeService
>>
>> on Android 7.0 Nougat. In this Android 7.0, mGattUpdateReceiver is not
>>
>> receiving the data from BLE peripheral device.
>>
>>
>> BluetoothLeService.*ACTION_GATT_CONNECTED*
>>
>> This response shows BLE peripheral device is connected. However, data is
>> not received.
>>
>>
>> BluetoothLeService.*ACTION_DATA_AVAILABLE
>> *
>>
>> This response shows data is available but is not returning anything.
>>
>>
>> Everything is working with previous versions of Android (6.x, 5.x). Is
>> there any specific
>>
>> change in the BLE service for Android 7.0?
>>
>>
>> Thanks,
>>
>
> *Confidentiality Note*:
>
> This email and the information transmitted in this email, including within
> any attachments, is confidential and/or privileged information. The
> information contained herein is intended only for the person/s or entity to
> which it is addressed. Any review, retransmission, dissemination or other
> use of, or taking of any action in reliance upon, this information by
> persons or entities other than the intended recipient/s is prohibited.
>
> If you received this in error, please destroy the message and any
> attachment and contact us immediately at i...@consumerphysics.com.
>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "Android Developers" group.
> To unsubscribe from this topic, visit https://groups.google.com/d/
> topic/android-developers/gtzoncigbec/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> android-developers+unsubscr...@googlegroups.com.
> To post to this group, send email to android-developers@googlegroups.com.
> Visit this group at https://groups.google.com/group/android-developers.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/android-developers/d8cfd017-8885-436c-8aaf-
> a24cb3ea1e76%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAOBoSnftwxeQLbmJg178wHF4P-DrWcVGcgjqwBKdSKxzvv89Wg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android 7.0 Nougat not work with BLE API i.e. BluetoothLeService

2016-10-09 Thread Nadav Gruber
Hi,
did you manage to solve this issue?
having the same problem.

On Monday, September 19, 2016 at 4:29:20 PM UTC+3, Kalpak Keskar wrote:
>
> Hello,
>
>
>
>
> I am trying to use android BLE API i.e. BluetoothLeService
>
> on Android 7.0 Nougat. In this Android 7.0, mGattUpdateReceiver is not 
>
> receiving the data from BLE peripheral device.
>
>
> BluetoothLeService.*ACTION_GATT_CONNECTED*
>
> This response shows BLE peripheral device is connected. However, data is 
> not received.
>
>
> BluetoothLeService.*ACTION_DATA_AVAILABLE
> *
>
> This response shows data is available but is not returning anything.
>
>
> Everything is working with previous versions of Android (6.x, 5.x). Is 
> there any specific 
>
> change in the BLE service for Android 7.0?
>
>
> Thanks,
>

-- 


*Confidentiality Note*:

This email and the information transmitted in this email, including within 
any attachments, is confidential and/or privileged information. The 
information contained herein is intended only for the person/s or entity to 
which it is addressed. Any review, retransmission, dissemination or other 
use of, or taking of any action in reliance upon, this information by 
persons or entities other than the intended recipient/s is prohibited.

If you received this in error, please destroy the message and any 
attachment and contact us immediately at i...@consumerphysics.com.

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/d8cfd017-8885-436c-8aaf-a24cb3ea1e76%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android Virtual Device

2016-10-04 Thread 'RLScott' via Android Developers
I find it much less trouble to forget about the emulator and the AVD, and 
just test on a connected actual Android device with an appropriate USB 
driver for that device.

On Sunday, October 2, 2016 at 9:24:40 PM UTC-6, warren nazareno wrote:
>
> Hi guys.
>
> I'm new to android.
>
> I'm trying to configure the AVD.
> But it says my CPU don't support.
> So what are ways to fix this?
>
> Thanks in advance
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/dcbaa7da-bd96-4e84-baaa-7f177bc31b02%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android Application Development Company

2016-10-04 Thread Amar InfoTech
Today era of mobile, every business needs an application to grow a business 
and to complete this another best *Android development company* 
 in INDIA 
is Amar infotech. Which offering best android developer for your 
application. You can check out a portfolio on a website, so you can trust 
us for your application development.

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/ec1b612f-4ad2-4e56-bbea-7a70300e2843%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Re: Android Virtual Device

2016-10-03 Thread warren nazareno
Thanks man.

On Monday, October 3, 2016 at 1:51:43 PM UTC+8, sardar khan wrote:
>
> You can use third party emulator like bluestack and genymotion.
>
> On Mon, Oct 3, 2016 at 8:31 AM, warren nazareno  wrote:
>
>> Or is it okay to start coding without configuring first the AVD?
>> or AVD is necessary to test?
>> Thanks in advance.
>>
>> On Monday, October 3, 2016 at 11:24:40 AM UTC+8, warren nazareno wrote:
>>>
>>> Hi guys.
>>>
>>> I'm new to android.
>>>
>>> I'm trying to configure the AVD.
>>> But it says my CPU don't support.
>>> So what are ways to fix this?
>>>
>>> Thanks in advance
>>>
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "Android Developers" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to android-developers+unsubscr...@googlegroups.com .
>> To post to this group, send email to android-d...@googlegroups.com 
>> .
>> Visit this group at https://groups.google.com/group/android-developers.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/android-developers/6c769d9d-8860-4ed8-a7b8-f24687976df3%40googlegroups.com
>>  
>> 
>> .
>>
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/d7066670-08cc-4abb-a1b2-f9da74ae9943%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Re: Android Virtual Device

2016-10-02 Thread sardar khan
You can use third party emulator like bluestack and genymotion.

On Mon, Oct 3, 2016 at 8:31 AM, warren nazareno 
wrote:

> Or is it okay to start coding without configuring first the AVD?
> or AVD is necessary to test?
> Thanks in advance.
>
> On Monday, October 3, 2016 at 11:24:40 AM UTC+8, warren nazareno wrote:
>>
>> Hi guys.
>>
>> I'm new to android.
>>
>> I'm trying to configure the AVD.
>> But it says my CPU don't support.
>> So what are ways to fix this?
>>
>> Thanks in advance
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Android Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to android-developers+unsubscr...@googlegroups.com.
> To post to this group, send email to android-developers@googlegroups.com.
> Visit this group at https://groups.google.com/group/android-developers.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/android-developers/6c769d9d-8860-4ed8-a7b8-
> f24687976df3%40googlegroups.com
> 
> .
>
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CABHzXAQP1OMUd0uH6xECH3BkgxF11-PST2CAtqGhSWG_RAqE8Q%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android Virtual Device

2016-10-02 Thread warren nazareno
Or is it okay to start coding without configuring first the AVD?
or AVD is necessary to test?
Thanks in advance.

On Monday, October 3, 2016 at 11:24:40 AM UTC+8, warren nazareno wrote:
>
> Hi guys.
>
> I'm new to android.
>
> I'm trying to configure the AVD.
> But it says my CPU don't support.
> So what are ways to fix this?
>
> Thanks in advance
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/6c769d9d-8860-4ed8-a7b8-f24687976df3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android CTS v7.0 --force-abi?

2016-09-27 Thread Christopher Freeman
Anyone trying to work through this, I think I have it figured out.  You 
need to explicitly give ABIs now.  In my case, those ABIs are arm64-v8a, 
armeabi-v7a.  CTS does output this in the host logs.

On Tuesday, September 27, 2016 at 3:15:12 PM UTC-7, Christopher Freeman 
wrote:
>
> --force-abi seems to be removed.  There is --abi but 32 and 64 do not seem 
> to work as parameters anymore.  Is there a way to get the same behavior in 
> CTS v7.0?
>
> 09-27 15:14:43 E/TestInvocation: Device 032151604558708002fc doesn't 
> support 32
> java.lang.IllegalArgumentException: Device 032151604558708002fc doesn't 
> support 32
> at 
> com.android.compatibility.common.tradefed.testtype.CompatibilityTest.getAbis(CompatibilityTest.java:421)
> at 
> com.android.compatibility.common.tradefed.testtype.CompatibilityTest.run(CompatibilityTest.java:299)
> at 
> com.android.tradefed.invoker.TestInvocation.runTests(TestInvocation.java:716)
> at 
> com.android.tradefed.invoker.TestInvocation.prepareAndRun(TestInvocation.java:491)
> at 
> com.android.tradefed.invoker.TestInvocation.performInvocation(TestInvocation.java:386)
> at 
> com.android.tradefed.invoker.TestInvocation.invoke(TestInvocation.java:166)
> at 
> com.android.tradefed.command.CommandScheduler$InvocationThread.run(CommandScheduler.java:471)
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/17bfac54-6244-4c24-86ca-80f17d2168d2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android Studio and SDK, Repository, Tools offline installation

2016-09-26 Thread Nilesh Bedekar
I found a solution from a website 
http://stackoverflow.com/questions/36936271/installing-android-support-repository-offline...
 
All one has to do is copy the package or the plugin zip file downloaded to 
the temp directory 9n my system it comes to C:\Users\UserName\AppData\
Local\Android\sdk\temp... hope this helps

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/da105123-5697-48ea-bd71-fb22f42507d0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android Developer in Oakland CA !

2016-09-15 Thread Rugved Mahamune
Good Evening Abhishek, 
I am interested in the profile stated by you I have an experience of 4- 
years in Android development and have been exploring Java  since 7 years.
Currently looking for a job change presently working at GrabOnRent and sole 
developer of 
https://play.google.com/store/apps/details?id=com.grabonrent.grabonrent=en
Thanking you Awaiting for your response

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/d82a5db4-f423-45a8-9518-2707e61607df%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Re: Android-voice chat

2016-08-30 Thread shenbagam p


Can you give the source code for voice chat android

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/4859a1c1-1a3c-4bbf-b710-fa616c6e1aeb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android Studio Freezes

2016-08-13 Thread Studiosoft Morecambe


On Thursday, August 11, 2016 at 9:38:37 AM UTC+1, Studiosoft Morecambe 
wrote:
>
> I am new to Android Studio but not to coding.
> I am slowly getting used to the environment and making progress but I keep 
> experiencing the editing GUI freezing up.
> It happens without warning and is not linked to the usual suspects of 
> endless loops etc.
> The machine is not starved of RAM but when a freeze occurs the RAM used by 
> Studio remains constant at over 1.2Gb, if that is any indication.
>
> I appreciate that this is a difficult problem as you have no way of 
> knowing how my machine is set up so I am simply asking for advice on how to 
> proceed. 
> If someone could stare into a crystal ball and solve my issue, that would 
> be great but I won't hold my breath. 
>
> I am using studio64 on Windows 10 and running in admin mode.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/a1f1f1fb-b642-48f5-b461-4531f207805c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android Studio Freezes

2016-08-13 Thread Studiosoft Morecambe
Solved.
Windows had incorrectly set the incorrect path to Java so was pointing at 
1.7 not 1.8.
Why doesn't Android Studio check that the correct version of Java is being 
used?


On Thursday, August 11, 2016 at 9:38:37 AM UTC+1, Studiosoft Morecambe 
wrote:

> I am new to Android Studio but not to coding.
> I am slowly getting used to the environment and making progress but I keep 
> experiencing the editing GUI freezing up.
> It happens without warning and is not linked to the usual suspects of 
> endless loops etc.
> The machine is not starved of RAM but when a freeze occurs the RAM used by 
> Studio remains constant at over 1.2Gb, if that is any indication.
>
> I appreciate that this is a difficult problem as you have no way of 
> knowing how my machine is set up so I am simply asking for advice on how to 
> proceed. 
> If someone could stare into a crystal ball and solve my issue, that would 
> be great but I won't hold my breath. 
>
> I am using studio64 on Windows 10 and running in admin mode.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/23a15e65-d8df-45a6-a11c-b021583a214d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android 2.3.3 Pad Block Corrupted

2016-08-02 Thread Saurabh Dhotre

hi buddy me to also have same exception please email me your code for 
refrence


thanks ,
in advance

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/3d631dad-585f-415a-b093-be6a968ffe4a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android Emoji keyboard

2016-07-26 Thread developer
 I have same problem while I am coding my app. Did you find a solution for 
this situation? 
 

21 Ağustos 2011 Pazar 13:43:53 UTC-7 tarihinde android_...@hotmail.co.il 
yazdı:
>
>
> I'm developing an Android application .. its an emoji ( emoticons) 
> keyboard application as a university project .. 
> I prepared the UI for the application by editing the softkeyboard 
> sample code ,provided in the samples  
> what i want to do now is to print the emoticons in the IME (the editor 
> of the input method), once the user click on an emoji key .. 
> I tried many methods ... like using SpannableStringBuilder and setting 
> an Imagespan to it but the image didn't appear on the editorand 
> also I tried using the following function fromHtml(String source, 
> Html.ImageGetter imageGetter, Html.TagHandler tagHandler) 
> ( note : the both methods work well in normal editText .. but the 
> editor of softkeboard NO) 
> * 
> /* 
> using the Spannabel 
> */Drawable d =getResources().getDrawable(R.drawable.e4); 
> d.setBounds(0, 0, d.getIntrinsicWidth(), 
> d.getIntrinsicHeight()); 
> SpannableString ss= new SpannableString(""); 
> ImageSpan span= new ImageSpan(d,ImageSpan.ALIGN_BASELINE); 
> ss.setSpan(span,0,1, Spannable.SPAN_INCLUSIVE_EXCLUSIVE); 
> InputConnection ic= getCurrentInputConnection(); 
> ic.commitText(ss, 1); 
>
>
> * 
> /* 
> using the html.fromHtml 
> */ 
>  ImageGetter imageGetter = new ImageGetter() { 
>   public Drawable getDrawable(String source) { 
>   //int id = Integer.parseInt(source); 
>   Drawable d = 
> getResources().getDrawable(R.drawable.e11); 
>   d.setBounds(0, 0, d.getIntrinsicWidth(), 
> d.getIntrinsicHeight()); 
>   return d; 
>  } 
>   }; 
>
>  CharSequence cs = Html.fromHtml("",imageGetter, null); 
>  tv.setText(cs); 
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/6f3d7051-6a27-407c-8f7c-2c13dbd86614%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android, Persian users and developers are filtered by google

2016-07-25 Thread ptc android
I agree with you, Google and other companies that shows their racism, 
banned Iran at first days after congress agreement, and does not have any 
plan to finish it even after that US lifts their ban and asked companies to 
finish it.

On Monday, July 18, 2016 at 8:33:20 AM UTC+4:30, AlirezA Akbari wrote:
>
> Why should google developer services being blocked by google for Iranian 
> users? After "Joint Comprehensive Plan of Action" USA freed Iran from all 
> before limitation such this! also Iranians are human, why you do huge 
> limits on them google??
> You announced powerful Firebase and filtered it in Iran, we cannot make an 
> app using this service and as it's clear using google services for making 
> apps and services as many benefits for Google too.
> I ask you to get off filters google, I'm a 6 years developer, but I cannot 
> produce a clearly nice app because of blocking all of your services!
> please finish 403 and turn to 200 :)
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/e0edb1df-d593-4d78-b995-9233f9ab952c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android Expandable RecyclerView different Card height

2016-07-23 Thread Amitai Rosenberg
Anyone?

On Friday, July 22, 2016 at 4:19:48 PM UTC+3, Amitai Rosenberg wrote:
>
> I have a RecyclerView that contains a list of cards, which expand into 
> child cards.
> Each card has different text. I want that when the user clicks on a child 
> card, it expands to show the text inside.
> I tried to measure the target height by using:
>
> view.Measure(ViewGroup.LayoutParams.WrapContent, 
> ViewGroup.LayoutParams.WrapContent);
>
>
> And then expanding the card to the Measured Height (see here 
> ).
>  
> However, it gives the same Measured Height to all of the cards.
>
> Here is my code, which is based on this 
>  (more 
> specifically the Xamarin version 
> ):
>
> This is the main Adapter, which creates and binds the parent and the child 
> cards:
>
> public class HalachaExpandableAdapter : 
> ExpandableRecyclerAdapter, 
> View.IOnClickListener{
> LayoutInflater _inflater;
> bool expand;
> int targetHeight;
> bool wave = false;
>
> public HalachaExpandableAdapter(Context context, List 
> itemList) : base(context, itemList)
> {
> _inflater = LayoutInflater.From(context);
> }
>
> public override void OnBindChildViewHolder(HalachaChildViewHolder 
> childViewHolder, int position, object childObject)
> {
> var halachaChild = (HalachaChild)childObject;
> childViewHolder.halachaChildTitle.Text = 
> halachaChild.Title.ToString();
>
> targetHeight = childViewHolder.halachaChildCard.Height;
> childViewHolder.halachaChildCard.LayoutParameters.Height = 100;
> childViewHolder.halachaChildCard.SetOnClickListener(this);
> expand = childViewHolder.expand;
>
> }
>
> public override void OnBindParentViewHolder(HalachaParentViewHolder 
> parentViewHolder, int position, object parentObject)
> {
> var halacha = (HalachaItem)parentObject;
> parentViewHolder._halachaTitleTextView.Text = halacha.Title();
> parentViewHolder._halachaContentTextView.Text = halacha.Content;
> if (halacha.ChildObjectList.Count == 1)
> wave = true;
> }
>
> public void OnClick(View v)
> {
> if (v.Height == 100)
> {
> AnimationCollapse anim = new AnimationCollapse(v, targetHeight, 
> 100);
> anim.Duration = 300;
> v.StartAnimation(anim);
>
> expand = false;
> }
> else
> {
> AnimationCollapse anim = new AnimationCollapse(v, 100, v.Height);
> anim.Duration = 300;
> v.StartAnimation(anim);
>
> expand = true;
> }
> }
>
> public override HalachaChildViewHolder OnCreateChildViewHolder(ViewGroup 
> childViewGroup)
> {
> var view = _inflater.Inflate(Resource.Layout.halachotListItem, 
> childViewGroup, false);
> return new HalachaChildViewHolder(view);
> }
>
> public override HalachaParentViewHolder 
> OnCreateParentViewHolder(ViewGroup parentViewGroup)
> {
> var view = _inflater.Inflate(Resource.Layout.halachotListHeader, 
> parentViewGroup, false);
> wave = false;
> return new HalachaParentViewHolder(view);
> }}
>
>
> I think this is where the code is needed to be done, but if you need some 
> of the other code of the other classes, I will gladly post them. You can 
> also look at the links above for reference to how this works.
>
> Hope someone can help me.
> Thanks!
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/fc68d987-fa7a-41c8-bada-4e06ff2ea216%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android documentation in PDF

2016-07-22 Thread sree kanth
I found this book online. But it was created in 2014. 
https://drive.google.com/open?id=0Bw6bPUwk2mfvZlZnOGJwZWRQLWc

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/93944ac7-153a-4c16-b040-b31aab4f4888%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android market time to refund.

2016-07-20 Thread Duma Smt


On Friday, September 24, 2010 at 7:38:43 PM UTC+5:30, Streets Of Boston 
wrote:
>
> Customers can uninstall their app within about 24-48 hours (the exact 
> number of hours is not quite clear to me), without your intervention 
> and their purchase is nullified. 
>
> After that period, their credit-card (through Google Checkout) gets 
> charged and the purchase has been made. 
>
> Customers can no longer get an automatic refund after this. 
>
> But they can contact you and ask for a refund from you. Through their 
> name and/or order-number, you can refund the purchase to the customer 
> yourself by going to your checkout.google.com account. When you do 
> cancel the order for them, the app will be un-installed from the 
> phone. 
>
>
> On Sep 24, 5:34 am, sblantipodi  wrote: 
> > Hi, 
> > can you refresh my mind please? 
> > 
> > How much time a customers have to ask for a refund once he bought our 
> > software from the market? 
> > 
> > Thanks.



are you sure the app will be uninstalled? 

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/7426c776-c426-4029-88c7-3a1e32f1105b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android Studio JVM issue

2016-07-18 Thread mangorobot
Please double check your windows environment variables.

https://java.com/en/download/help/path.xml



On Monday, July 18, 2016 at 5:05:53 AM UTC-6, Sreekanth Pulciherla wrote:
>
> i have installed android Sutiod 2.1 and JDK 1.7.79 on a 32 bit windows 
> machine. As soon as i open the studio i can see error "Failed to create 
> JVM: error code -4  JVM path:" in environment variables> if you already have 32 bit"
>
> I have installed 32 bit JDK and this issue i can see only in android 
> studio 2.1.
>
> Please help
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/5625d38b-230e-44c4-ba2e-292eb32a206d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android ExoPlayer youtube live streaming support?

2016-06-30 Thread Sam Kazmi
Hi Rashid,

Did you find any solution to your problem?
I'm having the same issue.

On Wednesday, November 25, 2015 at 3:16:27 PM UTC+5, Muhammad Rashid wrote:
>
> Hi everybody,
>
> I am currently using Android ExoPlayer to support youtube live streaming. 
> However player not works well 
>
> i.e https://www.youtube.com/watch?v=p7t_GWXmgFk
>
>
> Player stuck on buffering and no more playing stream.
>
> Best regards,
>
>  Muhammad Rashid
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/40dfb15f-170a-40cb-bd54-3f5c344d698d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android Palette working only on some of RecyclerView items

2016-06-16 Thread Amitai Rosenberg
Anyone?

On Tuesday, June 14, 2016 at 3:57:37 PM UTC+3, Amitai Rosenberg wrote:
>
> I'm trying to generate a Palette for each CardView I have inside a 
> RecyclerView, and to color the card based on the Palette generated.
> However, for some weird reason, only the last two CardViews of the 
> RecyclerView get colored.
>
>
> This is my code:
>
>
> RecyclerAdapter:
>
> public class RecyclerAdapter : RecyclerView.Adapter, 
> Palette.IPaletteAsyncListener
> {
> private List mBooks;
> private RecyclerView mRecyclerView;
> private Context mContext;
> private int mCurrentPosition = -1;
> private bool isPaletteGenerated = false;
> MyView myHolder;
> public RecyclerAdapter(List books, RecyclerView recyclerView, 
> Context context)
> {
> mBooks = books;
> mRecyclerView = recyclerView;
> mContext = context;
> }
>
> public class MyView : RecyclerView.ViewHolder
> {
> public View mMainView { get; set; }
> public TextView mTitle { get; set; }
> public ImageView mCoverImage { get; set; }
> public int mCoverImageResourceID { get; set; }
> public CardView mCard { get; set; }
>
> public MyView(View view) : base(view)
> {
> mMainView = view;
> }
> }
>
> public override RecyclerView.ViewHolder OnCreateViewHolder(ViewGroup 
> parent, int viewType)
> {
>
> View bookItem = 
> LayoutInflater.From(parent.Context).Inflate(Resource.Layout.item_book, 
> parent, false);
>
>
> TextView bookTitle = 
> bookItem.FindViewById(Resource.Id.bookTitle);
> ImageView coverImage = 
> bookItem.FindViewById(Resource.Id.coverImage);
> CardView card = bookItem.FindViewById(Resource.Id.card);
>
> MyView view = new MyView(bookItem) { mTitle = bookTitle, 
> mCoverImage = coverImage, mCard = card};
> return view;
> }
>
> public override async void OnBindViewHolder(RecyclerView.ViewHolder 
> holder, int position)
> {
> myHolder = holder as MyView;
> myHolder.mMainView.Click += mMainView_Click;
> myHolder.mTitle.Text = mBooks[position].Title;
> 
> myHolder.mCoverImage.SetImageDrawable(mBooks[position].Cover.Drawable);
> myHolder.mCoverImageResourceID = mBooks[position].imageResourceId;
>
> if (position > mCurrentPosition)
> {
> int currentAnim = Resource.Animation.slide_left_to_right;
> //SetAnimation(myHolder.mMainView, currentAnim);
> mCurrentPosition = position;
> }
>
> Bitmap photo = await 
> BitmapFactory.DecodeResourceAsync(mContext.Resources, 
> myHolder.mCoverImageResourceID);
> BitmapDrawable bitmapDrawable = 
> ((BitmapDrawable)mBooks[position].Cover.Drawable);
> Bitmap image = bitmapDrawable.Bitmap;
>
> var palette = 
> Palette.From(photo).MaximumColorCount(16).Generate(this);
>
>
> }   
>
> public void OnGenerated(Palette palette)
> {
>
> if (palette == null)
> return;
> try
> {
> if (palette.LightVibrantSwatch != null)
> {
> var lightVibrant = new 
> Color(palette.LightVibrantSwatch.Rgb);
> myHolder.mCard.SetCardBackgroundColor(lightVibrant);
> }
> if (palette.DarkVibrantSwatch != null)
> {
> var darkVibrant = new 
> Color(palette.DarkVibrantSwatch.Rgb);
> myHolder.mCard.SetCardBackgroundColor(darkVibrant);
> }
> }
> catch (Exception ex)
> {
>
> }
>
> }
>
> public override int ItemCount
> {
> get { return mBooks.Count; }
> }
> }
>
>
> Fragment in which the RecyclerView is inside:
>
> public override View OnCreateView(LayoutInflater inflater, ViewGroup 
> container, Bundle savedInstanceState)
> {
>
> mRecyclerView = 
> view.FindViewById(Resource.Id.booksRecyclerView);
> mBooks = new List();
> ImageView cover = new ImageView(Activity);
>
> cover.SetImageResource(Resource.Drawable.Torat_Hamachane1);
> mBooks.Add(new Book() { Title = "תורת המחנה א' - הלכות יום ויום", 
> Cover = cover, imageResourceId = Resource.Drawable.Torat_Hamachane1}); 
>
>
> mLayoutManager = new GridLayoutManager(Activity, 2);
> mRecyclerView.SetForegroundGravity(GravityFlags.CenterHorizontal);
> mRecyclerView.SetLayoutManager(mLayoutManager);
> SimpleItemAnimator x = null;
>
> mRecyclerView.SetItemAnimator(x);
> mAdapter = new RecyclerAdapter(mBooks, mRecyclerView, Activity);
> 

[android-developers] Re: Android Bluetooth Increase Speed Performance

2016-06-07 Thread gjs
Improve transfer speed by buffering the reads and writes (in 
pre-allocated fixed sized arrays) and DON'T allocate a new byte buffer in 
the middle of your while loop...

On Tuesday, June 7, 2016 at 3:18:13 AM UTC+10, Devin Chen wrote:
>
>
> I am trying to increase the transfer speed on android bluetooth. I 
> experimented transferring a 2.7MB buffer from one android device to another 
> using RFComm socket of the Bluetooth API (see code below). It took ~70 secs 
> to complete. I compared this method against the "Share" via bluetooth 
> function that came with the phone. The "Share" function gave exceptionally 
> better performance (~15 secs to transfer a 2.7MB file). 
>
> How does the "Share" function differ from using the Bluetooth API? How can 
> I replicate the "Share" method to get optimized transfer speed?
>
> Thanks,
>
> Bluetooth API test code:
>
> Server side - installed on one android device
>
>
> Thanks,
>
> Bluetooth API test code:
>
>
> Server side - installed on one android device
>
>
> BluetoothAdapter mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
> mServerSocket = 
> mBluetoothAdapter.listenUsingRfcommWithServiceRecord("DeviceName", MY_UUID);
> socket = mServerSocket.accept();
> mInStream = socket.getInputStream();int totalByte = 1;while (totalByte < 
> 2718720) {
> int bytesAvailable = mInStream.available();
> if (bytesAvailable > 0) {
> totalByte += bytesAvailable;
> byte[] buffer = new byte[bytesAvailable];
> mInStream.read(buffer);
> }}
>
> Client side - installed on other android device
>
>
> mClientSocket = device.createInsecureRfcommSocketToServiceRecord(
> MY_UUID);
> mClientSocket.connect();
> mOutStream = mClientSocket.getOutputStream();byte byteValue = 0;for (int i=0; 
> i<2718720; i++) {
> byteValue++;
> mOutStream.write(byteValue);}
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/812ee3a1-09a6-4843-ab18-4a53db402122%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android mobile usage history NetworkStatsManager

2016-06-01 Thread EMIDIO OLIVEIRA


I found a solution of this problem with hidden APIs (android statistic 3g 
traffic for each APP, how? 
)
 
and when trying to retrieve mobile data usage information with TYPE_MOBILE 
was necessary to inform the SubscriberID, unlike when I tryed to get 
information TYPE WIFI.

Try this code

TelephonyManager  tm = 
(TelephonyManager)getSystemService(TELEPHONY_SERVICE);
String subscriberID = tm.getSubscriberId();

NetworkStats networkStatsByApp = 
networkStatsManager.queryDetailsForUid(ConnectivityManager.TYPE_MOBILE, 
subscriberID, start, end, uid);

So when you are using TYPE_MOBILE, it's necessary to you use a valid 
subscriberID.




Em quinta-feira, 19 de maio de 2016 07:50:52 UTC-3, Mauro Esposito escreveu:
>
> I'm making an App for Android 6.0 and I want to use the new class 
> NetworkStatsManager for getting mobile data usage.
>
> I added all permission I need in manifest and require the permission 
> runtime.
>
> When I call the method:
>
> bucket = 
> networkStatsManager.querySummaryForDevice(ConnectivityManager.TYPE_WIFI, "", 
> fromDate.getTime(), toDate.getTime());
>
> return the right value for WIFI usage.
>
> But if i replace TYPE_WIFI with TYPE_MOBILE the result is always 0.
>
> NetworkStats.Bucket bucket = null;
> try {
> bucket = 
> networkStatsManager.querySummaryForDevice(ConnectivityManager.TYPE_MOBILE, 
> "", fromDate.getTime(), toDate.getTime());
>
> if(bucket == null){
> Log.i("Info", "Error");
> }else{
> Log.i("Info", "Total: " + (bucket.getRxBytes() + 
> bucket.getTxBytes()));
> }
>
> } catch (RemoteException e) {
> e.printStackTrace();
> }
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/9764e4ab-3b87-44df-aa10-cbaa3a7f862f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android watch

2016-05-30 Thread Steve Gabrilowitz


On Saturday, May 28, 2016 at 12:07:42 PM UTC-4, Steve Gabrilowitz wrote:
>
> I've developed several apps for phone and tablet and now want to try my 
> hand at developing a wearable app.  Googled some and found numerous 
> examples of how to send notifications to the watch and tutorials for 
> setting up a development environment but nothing about how to make the  
> device run an app with a button/touch/gesture whatever?  The app I want to 
> write is for a Tesla so some sort of UI on the watch is mandatory 
> (lock/unlock commands etc), what I have in mind is that the commands are 
> sent via BT to the phone which then performs a REST command on the Tesla 
> server.  Any hints or pointers?  Is the watch capable of something like 
> this?
>
> Also, since I don't currently own an android watch are there any 
> suggestions for which one to get?
>

Anybody? 

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/86e9692c-d797-4195-a0cf-7e98b434ae1f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Re: android runtime problem

2016-05-28 Thread Steve Gabrilowitz
probably both, check your syslog for more information
On May 28, 2016 3:29 PM, "Govinda Kumar Roy" 
wrote:

> Is it a coding error or a runtime error.
>
> On Friday, May 27, 2016 at 3:54:12 AM UTC+6, Govinda Kumar Roy wrote:
>>
>> Can anyone say why it show   "Unfortunately,program has stopped" .
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Android Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to android-developers+unsubscr...@googlegroups.com.
> To post to this group, send email to android-developers@googlegroups.com.
> Visit this group at https://groups.google.com/group/android-developers.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/android-developers/b510be50-daca-4133-9c6d-36de93f14d39%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CABfabRg8hXgQC8Hp-w_2-4ZA0vRXvisUPyrDfWyyojbk3HD0rg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: android runtime problem

2016-05-28 Thread Govinda Kumar Roy
Is it a coding error or a runtime error.

On Friday, May 27, 2016 at 3:54:12 AM UTC+6, Govinda Kumar Roy wrote:
>
> Can anyone say why it show   "Unfortunately,program has stopped" .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/b510be50-daca-4133-9c6d-36de93f14d39%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: android runtime problem

2016-05-28 Thread Govinda Kumar Roy
Is it a coding error or a runtime error.

On Friday, May 27, 2016 at 3:54:12 AM UTC+6, Govinda Kumar Roy wrote:
>
> Can anyone say why it show   "Unfortunately,program has stopped" .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/d430f5a6-ef36-47cd-ba4a-b75bbc385031%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android mobile usage history NetworkStatsManager

2016-05-22 Thread Mauro Esposito
can help me?

Il giorno giovedì 19 maggio 2016 12:50:52 UTC+2, Mauro Esposito ha scritto:
>
> I'm making an App for Android 6.0 and I want to use the new class 
> NetworkStatsManager for getting mobile data usage.
>
> I added all permission I need in manifest and require the permission 
> runtime.
>
> When I call the method:
>
> bucket = 
> networkStatsManager.querySummaryForDevice(ConnectivityManager.TYPE_WIFI, "", 
> fromDate.getTime(), toDate.getTime());
>
> return the right value for WIFI usage.
>
> But if i replace TYPE_WIFI with TYPE_MOBILE the result is always 0.
>
> NetworkStats.Bucket bucket = null;
> try {
> bucket = 
> networkStatsManager.querySummaryForDevice(ConnectivityManager.TYPE_MOBILE, 
> "", fromDate.getTime(), toDate.getTime());
>
> if(bucket == null){
> Log.i("Info", "Error");
> }else{
> Log.i("Info", "Total: " + (bucket.getRxBytes() + 
> bucket.getTxBytes()));
> }
>
> } catch (RemoteException e) {
> e.printStackTrace();
> }
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/838ea9db-0dd6-4211-8c80-d46d6d4c8b4e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Re: Android Studio + Kotlin + databinding = unused methods?

2016-05-17 Thread Streets Of Boston
You're right, that could be an issue. 
When coding Java source, you can add comments to disable certain Lint 
checks. I know those work in Kotlin as well, but the set of available 
'comments' may be limited compared to their Java counterpart.


On Tuesday, May 17, 2016 at 10:46:37 AM UTC-4, Mike Hurley wrote:
>
> I just looked in Android Studio 2.1.1 and I didn't see an option to 
> "comment out" the unused method warning for that method. My only choice was 
> to clean delete the method. Is there a manual syntax/annotation I can try? 
> I wonder if the Kotlin plugin is simply less advanced in this area.
>
> On Mon, May 16, 2016 at 1:51 PM, Streets Of Boston  > wrote:
>
>> What about just disabling the Lint processing for this 'unused' issue?
>>
>> Click on the yellow warning and fix it by adding a lint-disabling comment 
>> to the method. This will remove the warning.
>>
>> On Saturday, May 14, 2016 at 10:47:33 AM UTC-4, Mike Hurley wrote:
>>>
>>> Here are the versions I'm using:
>>> Android Studio 2.1.1
>>> Kotlin 1.0.2
>>> Android databinding 1.1
>>>
>>> I currently have an annoyance in Android Studio with Kotlin and 
>>> databinding. A method bound to a button's onClick event is showing up in 
>>> the gutter as a yellow warning saying the method isn't used. Is this a 
>>> general databinding problem for all languages or is this an issue with the 
>>> Kotlin plugin? Are there any JVM or Kotlin annotations I can use to mark 
>>> the method as "used"? Any other ideas?
>>>
>> -- 
>> You received this message because you are subscribed to a topic in the 
>> Google Groups "Android Developers" group.
>> To unsubscribe from this topic, visit 
>> https://groups.google.com/d/topic/android-developers/mWI0KC7i5mQ/unsubscribe
>> .
>> To unsubscribe from this group and all its topics, send an email to 
>> android-developers+unsubscr...@googlegroups.com .
>> To post to this group, send email to android-d...@googlegroups.com 
>> .
>> Visit this group at https://groups.google.com/group/android-developers.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/android-developers/f1604e76-1fdf-4932-bbaa-91bc9d707727%40googlegroups.com
>>  
>> 
>> .
>>
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/e4d6a89b-b251-492b-8af4-e009d5c6bfd3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Re: Android Studio + Kotlin + databinding = unused methods?

2016-05-17 Thread Mike Hurley
I just looked in Android Studio 2.1.1 and I didn't see an option to
"comment out" the unused method warning for that method. My only choice was
to clean delete the method. Is there a manual syntax/annotation I can try?
I wonder if the Kotlin plugin is simply less advanced in this area.

On Mon, May 16, 2016 at 1:51 PM, Streets Of Boston 
wrote:

> What about just disabling the Lint processing for this 'unused' issue?
>
> Click on the yellow warning and fix it by adding a lint-disabling comment
> to the method. This will remove the warning.
>
> On Saturday, May 14, 2016 at 10:47:33 AM UTC-4, Mike Hurley wrote:
>>
>> Here are the versions I'm using:
>> Android Studio 2.1.1
>> Kotlin 1.0.2
>> Android databinding 1.1
>>
>> I currently have an annoyance in Android Studio with Kotlin and
>> databinding. A method bound to a button's onClick event is showing up in
>> the gutter as a yellow warning saying the method isn't used. Is this a
>> general databinding problem for all languages or is this an issue with the
>> Kotlin plugin? Are there any JVM or Kotlin annotations I can use to mark
>> the method as "used"? Any other ideas?
>>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "Android Developers" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/android-developers/mWI0KC7i5mQ/unsubscribe
> .
> To unsubscribe from this group and all its topics, send an email to
> android-developers+unsubscr...@googlegroups.com.
> To post to this group, send email to android-developers@googlegroups.com.
> Visit this group at https://groups.google.com/group/android-developers.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/android-developers/f1604e76-1fdf-4932-bbaa-91bc9d707727%40googlegroups.com
> 
> .
>
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CA%2BN1GyGEns8EePJ4KJKD6xszj%2B3XfAMk86NwW5zcF2HotyhxaQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android Studio + Kotlin + databinding = unused methods?

2016-05-16 Thread Streets Of Boston
What about just disabling the Lint processing for this 'unused' issue?

Click on the yellow warning and fix it by adding a lint-disabling comment 
to the method. This will remove the warning.

On Saturday, May 14, 2016 at 10:47:33 AM UTC-4, Mike Hurley wrote:
>
> Here are the versions I'm using:
> Android Studio 2.1.1
> Kotlin 1.0.2
> Android databinding 1.1
>
> I currently have an annoyance in Android Studio with Kotlin and 
> databinding. A method bound to a button's onClick event is showing up in 
> the gutter as a yellow warning saying the method isn't used. Is this a 
> general databinding problem for all languages or is this an issue with the 
> Kotlin plugin? Are there any JVM or Kotlin annotations I can use to mark 
> the method as "used"? Any other ideas?
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/f1604e76-1fdf-4932-bbaa-91bc9d707727%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android Studio IDE

2016-05-11 Thread Elí Obed De la Rosa Raymundo

Hey guys, Is there any update on this?
On Sunday, April 3, 2016 at 4:55:11 PM UTC-7, Rhony Abdullah wrote:
>
> Hello,
>
> According my to discussion thread 
>  
> in opensuse forum they say that i need to asking this on the android studio 
> forum. So i got warning while running the android studio in my opensuse 
> leap:
>
> log4j:WARN No appenders could be found for logger 
> (io.netty.util.internal.logging.InternalLoggerFactory).
> log4j:WARN Please initialize the log4j system properly.
> log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more 
> info.
>
> i can running, compiling my android project so far, but want to care about 
> this warning. 
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/6a848478-4c84-484d-86e7-e52ecb0f650f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android AudioRecord forcing another stream to MIC audio source

2016-05-10 Thread Required Field


I now believe other apps might be using Qualcomm audio with CAF. See 
audio_extn_utils_send_audio_calibration at 
https://github.com/dtsinc/DTS-Eagle-Integration_CAF-Android-hardware-qcom-audio/blob/master/hal/audio_extn/utils.c


and voice_get_incall_rec_snd_device at 
https://github.com/dtsinc/DTS-Eagle-Integration_CAF-Android-hardware-qcom-audio/blob/master/hal/voice.c


I have no C/++ knowledge. How can I find out if I can call these methods 
from native side? Since other apps can, there must be a way.

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/4b75e790-45ed-4bc4-80cd-07c2383937eb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android 4.3 (API 18) google maps development problem

2016-05-06 Thread gjs
You need internet connection to download Google  map tiles. GPS is just used to 
decide which map tiles to download and display.

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/2e1534a7-97a6-4f33-aa44-a64f3a354ac7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android 4.3 (API 18) google maps development problem

2016-05-05 Thread Zsolt Kálózi
any ideas?

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/4db0724e-0695-46d3-b31b-5cb9770ab68f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android 4.3 (API 18) google maps development problem

2016-05-05 Thread Zsolt Kálózi
A little bit more information:

- when WIFI is ON, the map is loaded, the app works correctly,
- when WIFI is OFF, the app goes until the state that the picture shows 
above
The purpose of the app is to load the map through gps, so if it works only 
on WIFI its unacceptable..
I tried to go with the phone to an open area to test the gps:
- with official google maps app I could navigate and use the app
- with my app the map didn't load, just until the above state again

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/b8563bce-f08c-45eb-bd4b-fcc8a969333e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android 4.3 (API 18) google maps development problem

2016-05-05 Thread Zsolt Kálózi



okay, the application made a little bit of progress somehow on his own, no 
idea how..
Now it freezes at this state:
- the background gets more darker
- a mesh is shown
- the marker is shown

But still no map..

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/c55d84b6-75ba-47ea-abd1-466f07d45452%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android 4.3 (API 18) google maps development problem

2016-05-05 Thread Zsolt Kálózi
now it started to work for no reason! 
I guess I need a few hours after I register my API key before I can use it 
in the application.

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/28109a7a-91cd-49f7-81ee-252a7a1998da%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android 4.3 (API 18) google maps development problem

2016-05-05 Thread Zsolt Kálózi
now it started to work for no reason! 
I guess I need a few hours after I register my API key before I can use it 
in the application.

On Thursday, May 5, 2016 at 2:39:04 PM UTC+2, Zsolt Kálózi wrote:
>
>
> 
> Hello everyone!
>
> I got stuck with the development of a google maps application on my Xiaomi 
> Redmi 1s, which uses Android 4.3 (API 18). 
> I downloaded the official application from the Play Store (version 9.25.1) 
> and it works just perfectly fine. 
> Then I followed every step on this page:
> https://developers.google.com/maps/documentation/android-api/start 
> 
>  
>
> The application is stuck in the middle, the Google icon appears on the 
> bottom left corner and the screen is just blank white and nothing happens 
> (as the picture shows). 
>
> Can you help me to solve this issue? Thank you in advance!
>
> Zsolt
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/fc7d6ef6-c3aa-4db3-b0fb-589e74ce62ec%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android trademark protection

2016-05-03 Thread 'Manuel Fiedler' via Android Developers
Cool. Thank you :-)

Am Montag, 2. Mai 2016 08:33:59 UTC+2 schrieb gjs:
>
> https://support.google.com/googleplay/contact/brand_developer

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/dd4840c4-3af7-4bf7-ab8f-8adc44481356%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android trademark protection

2016-05-02 Thread gjs
https://support.google.com/googleplay/contact/brand_developer

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/d9f7b6b5-3d99-47d0-88a9-8e52869eab79%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android trademark protection

2016-05-01 Thread 'Manuel Fiedler' via Android Developers
Hi again. Can anybody from google reply to that?

Am Mittwoch, 27. April 2016 11:07:31 UTC+2 schrieb Manuel Fiedler:
>
> Hello,
>
> I'm an android freelancer and designed a logo for my company, which is 
> similar to the NEW android font. I already noticed, that using the old font 
> is not allowed (
> http://developer.android.com/distribute/tools/promote/brand.html). So my 
> concern is, that I want to avoid offending against the android trademark.
>
> I attached the logo. Can anybody check that, before I publish the logo?
>
> Thx for replies
> Manuel Fiedler
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/e785ddcb-023e-4d5d-bdd2-b06b75dae5df%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: android phone to purchase for testing

2016-04-24 Thread gjs
Hi,

Will any Android phone work with the current highest API - NO

or would the phone limit what API I can test on it?  - YES

I am basically looking for the cheapest phone I can use to test an Android 
Studio project using the current highest API. - Look at the Google Nexus 
Phones they are designed for this purpose - https://store.google.com/

The google nexus phones going back to nexus 5 still support latest Android 
API - https://developers.google.com/android/nexus/images#instructions

You might be able to still be able to buy nexus 5 new or second hand - 
https://www.google.com/webhp?sourceid=chrome-instant=1=2=UTF-8#q=nexus+5+buy=shop

Regards





On Sunday, April 24, 2016 at 3:24:56 AM UTC+10, Shinehah wrote:
>
> I would like to purchase an Android phone to test software I create in 
> Android Studio.  I would like to use the phone when I run a project in 
> Android Studio.  Will any Android phone work with the current highest API 
> or would the phone limit what API I can test on it?  I am basically looking 
> for the cheapest phone I can use to test an Android Studio project using 
> the current highest API.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/29c37da4-9eb5-4451-98d7-b9cac6c6df80%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android 5.0.1 Energy saver, protected apps, not receiving GCM push notifications

2016-04-19 Thread Marcel Molenaar
I did find an interesting post here: 
http://stackoverflow.com/questions/31638986/protected-apps-setting-on-huawei-phones-and-how-to-handle-it

Op dinsdag 19 april 2016 15:16:32 UTC+2 schreef Marcel Molenaar:
>
> Hello all,
>
> I have a problem with recieving GCM push notifications.
>
> I tested my app on a Huawei ALE-L21. On all other devices i tested with 
> the GCM push notifications worked well but on the Huawei it only worked 
> when the app was running in the foreground.
>
> After hours of searching i found in settings -> energy saver -> Protected 
> apps that i had to add my app as a protected app. After that everything 
> worked fine.
>
> The problem is that this was really hard to find and the future users of 
> my app wil not know about this feature and simply will not receive any push 
> notifications.
>
> My question: is there a way to programmatically set my app as being a 
> protected app? Somehow through the manifest file or something? Or is there 
> any other solution for this?
>
> Marcel
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/79d217ca-0d91-4426-9c1f-77c7ef242418%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: android native camera app orientation issue for launching via intent

2016-04-13 Thread sachin1
Hi,

Anyhelp on this? I figured that some people asked in StackOverflow to 
chnage orientation using Exif interface.My question is that in what 
function should i implement same?
What i mean here: StartActivityResult(Intent) to trigger camera & 
OnStartActivityREsult to handle image ouput, but in what function to handle 
image preview? So that, user can approve the clicked photo.
Please let me know if we can do that. IS there any callback from android to 
handle this preview from native android camera app?

Regards,
Sachin Maheshwari



On Wednesday, April 13, 2016 at 5:22:12 PM UTC+5:30, sachin1 wrote:
>
> Hello Everyone,
>
> I am new to the android developemt and building app which takes pictures 
> and using Android Native Camera App but Android Camera work looks to be 
> complicated because of rotation issues with respect to device 
> manufacturers. Some devices code is working fine and some has rotation and 
> mirroring issues.
>
> Followed Andorid documentation to write code for launching native camera 
> via intent:
>
> http://developer.android.com/training/camera/photobasics.html
>
>  
>
> *Problem: U*sing Andorid Native Camera App for taking pictures from my 
> app and launching via intent as mentioned in above link 
> (MediaStore.ACTION_IMAGE_CAPTURE) and camera is launched successfully. When 
> I click camera button of Native app to take pictures, *image preview is 
> mirrored* while taking selfie (left image appears right) which selfie 
> user would hate as image preview is not what he clicked.
>
> Second - once image is clicked, it shows image preview and waits for user 
> input for acceptance or rejection of picture.
>
> Once image is accepted, OnStartActivityResult (as mentioned in above link) 
> function receives the call and saves image to gallery. Strange thing here 
> is that: I*mage gets inverted by 180 degre*e and then saved which is very 
> weird behaviour.
>
> Finally, two problems here:* Image Preview Mirroing issue before user 
> approves and while saving image invert issue (180 degree reverse).*
>
>  
>
> *Device:* Samsung A6 Edge
>
> *Android:* 5.1
>
> *Camera In Manifest File:* Android.hardware.camera2 as Camera is 
> deprecated Please advise how can i fix above two issues.
>
>  
>
> Also-* I have another doubt: *Shall i use android native camera app or 
> write the code using Camera Framework and launch custom camera? My 
> requirement just to click pictures and show preview and save it with 
> correct orientation. After searching a lot, I am doubtful - Can native 
> camera app fix these issues? but your expert advise can help on this.
>
>
> Any quick support and guidance on this is highly appreciated. Thanks in 
> advance !
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/a74c145c-a173-42ee-b8bb-bb6218f61c23%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android Studio Does not run on School Issued devices.

2016-04-08 Thread gjs
Hi, 

Probably as you say because of -

The issue is that when it is run, it displays a message that Windows 
Firewall has blocked several features

- perhaps arrange for temporary firewall traversal to test this theory and 
also report it to https://code.google.com/p/android/issues as suggested, 
null value exception in this case is poor error handling.

Regards

On Thursday, April 7, 2016 at 10:10:08 PM UTC+10, Josh Parkinson wrote:
>
> Any reason why this may occur?
>
> On Thursday, April 7, 2016 at 8:09:36 AM UTC-4, Josh Parkinson wrote:
>>
>> For our Engineering Design and Development project, we need to use 
>> Android Studio on the school computers. The issue is that when it is run, 
>> it displays a message that Windows Firewall has blocked several features, 
>> then it gives us the following error message:
>>
>> Internal error. Please report to https://code.google.com/p/android/issues
>>
>> java.lang.RuntimeException: java.lang.IllegalArgumentException: Argument 
>> for @NotNull parameter 'name' of 
>> com/android/tools/idea/welcome/Platform. must not be null
>> at com.intellij.idea.IdeaApplication.run(IdeaApplication.java:178)
>> at com.intellij.idea.MainImpl$1$1$1.run(MainImpl.java:52)
>> at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:311)
>> at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:756)
>> at java.awt.EventQueue.access$500(EventQueue.java:97)
>> at java.awt.EventQueue$3.run(EventQueue.java:709)
>> at java.awt.EventQueue$3.run(EventQueue.java:703)
>> at java.security.AccessController.doPrivileged(Native Method)
>> at 
>> java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:75)
>> at java.awt.EventQueue.dispatchEvent(EventQueue.java:726)
>> at 
>> com.intellij.ide.IdeEventQueue.dispatchEvent(IdeEventQueue.java:362)
>> at 
>> java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:201)
>> at 
>> java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:116)
>> at 
>> java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:105)
>> at 
>> java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101)
>> at 
>> java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93)
>> at java.awt.EventDispatchThread.run(EventDispatchThread.java:82)
>> Caused by: java.lang.IllegalArgumentException: Argument for @NotNull 
>> parameter 'name' of com/android/tools/idea/welcome/Platform. must not 
>> be null
>> at com.android.tools.idea.welcome.Platform.(Platform.java)
>> at 
>> com.android.tools.idea.welcome.Platform.getLatestPlatform(Platform.java:72)
>> at 
>> com.android.tools.idea.welcome.Platform.createSubtree(Platform.java:89)
>> at 
>> com.android.tools.idea.welcome.InstallComponentsPath.createComponentTree(InstallComponentsPath.java:81)
>> at 
>> com.android.tools.idea.welcome.InstallComponentsPath.init(InstallComponentsPath.java:215)
>> at 
>> com.android.tools.idea.wizard.DynamicWizardPath.attachToWizard(DynamicWizardPath.java:97)
>> at 
>> com.android.tools.idea.wizard.DynamicWizard.addPath(DynamicWizard.java:233)
>> at 
>> com.android.tools.idea.welcome.FirstRunWizard.init(FirstRunWizard.java:75)
>> at 
>> com.android.tools.idea.welcome.FirstRunWizardHost.setupWizard(FirstRunWizardHost.java:100)
>> at 
>> com.android.tools.idea.welcome.FirstRunWizardHost.getWelcomePanel(FirstRunWizardHost.java:92)
>> at 
>> com.intellij.openapi.wm.impl.welcomeScreen.WelcomeFrame.(WelcomeFrame.java:68)
>> at 
>> com.intellij.openapi.wm.impl.welcomeScreen.WelcomeFrame.showNow(WelcomeFrame.java:173)
>> at 
>> com.intellij.idea.IdeaApplication$IdeStarter.main(IdeaApplication.java:302)
>> at com.intellij.idea.IdeaApplication.run(IdeaApplication.java:172)
>> ... 16 more
>>
>>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/67a13026-6148-4923-a658-f0aa86a96b61%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android Studio stuck on startup splash screen

2016-04-07 Thread Luiz Zenha
Thanks, but i just rebooted the mac and install Android Studio again and it 
worked.

On Thursday, April 7, 2016 at 2:07:39 PM UTC-3, neobie wrote:
>
> Hi. Clearing Android studio's cache will do.
> You may try something like AppCleaner: https://freemacsoft.net/appcleaner/
>
> On Friday, 8 April 2016 00:54:14 UTC+8, Luiz Zenha wrote:
>>
>> Hi
>>
>> did you solved this problem? im having this same issue
>>
>> thanks
>>
>> On Thursday, January 28, 2016 at 11:19:46 AM UTC-2, neobie wrote:
>>>
>>> Hi,
>>>
>>>
>>> My Android Studio keep stuck on startup recently (more then 10 minutes).
>>>
>>>
>>> Some people suggested to add in a line at idea.properties
>>>
>>>
>>> disable.android.first.run=true
>>>
>>>
>>> but it is not working for me. Someone please help?
>>>
>>> Using Mac EL Capitan
>>>
>>>
>>>
>>>
>>>
>>> 
>>>
>>>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/d14e79ba-43c6-4b15-8f60-d962bf0d7aaf%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android Studio stuck on startup splash screen

2016-04-07 Thread neobie
Hi. Clearing Android studio's cache will do.
You may try something like AppCleaner: https://freemacsoft.net/appcleaner/

On Friday, 8 April 2016 00:54:14 UTC+8, Luiz Zenha wrote:
>
> Hi
>
> did you solved this problem? im having this same issue
>
> thanks
>
> On Thursday, January 28, 2016 at 11:19:46 AM UTC-2, neobie wrote:
>>
>> Hi,
>>
>>
>> My Android Studio keep stuck on startup recently (more then 10 minutes).
>>
>>
>> Some people suggested to add in a line at idea.properties
>>
>>
>> disable.android.first.run=true
>>
>>
>> but it is not working for me. Someone please help?
>>
>> Using Mac EL Capitan
>>
>>
>>
>>
>>
>> 
>>
>>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/e19dc480-093a-41ba-a766-67d088bb66f5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android Studio stuck on startup splash screen

2016-04-07 Thread Luiz Zenha
Hi

did you solved this problem? im having this same issue

thanks

On Thursday, January 28, 2016 at 11:19:46 AM UTC-2, neobie wrote:
>
> Hi,
>
>
> My Android Studio keep stuck on startup recently (more then 10 minutes).
>
>
> Some people suggested to add in a line at idea.properties
>
>
> disable.android.first.run=true
>
>
> but it is not working for me. Someone please help?
>
> Using Mac EL Capitan
>
>
>
>
>
> 
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/81f0e991-f127-4d04-9537-d8548eb0eb9a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android Studio Does not run on School Issued devices.

2016-04-07 Thread Josh Parkinson
Any reason why this may occur?

On Thursday, April 7, 2016 at 8:09:36 AM UTC-4, Josh Parkinson wrote:
>
> For our Engineering Design and Development project, we need to use Android 
> Studio on the school computers. The issue is that when it is run, it 
> displays a message that Windows Firewall has blocked several features, then 
> it gives us the following error message:
>
> Internal error. Please report to https://code.google.com/p/android/issues
>
> java.lang.RuntimeException: java.lang.IllegalArgumentException: Argument 
> for @NotNull parameter 'name' of 
> com/android/tools/idea/welcome/Platform. must not be null
> at com.intellij.idea.IdeaApplication.run(IdeaApplication.java:178)
> at com.intellij.idea.MainImpl$1$1$1.run(MainImpl.java:52)
> at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:311)
> at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:756)
> at java.awt.EventQueue.access$500(EventQueue.java:97)
> at java.awt.EventQueue$3.run(EventQueue.java:709)
> at java.awt.EventQueue$3.run(EventQueue.java:703)
> at java.security.AccessController.doPrivileged(Native Method)
> at 
> java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:75)
> at java.awt.EventQueue.dispatchEvent(EventQueue.java:726)
> at com.intellij.ide.IdeEventQueue.dispatchEvent(IdeEventQueue.java:362)
> at 
> java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:201)
> at 
> java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:116)
> at 
> java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:105)
> at 
> java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101)
> at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93)
> at java.awt.EventDispatchThread.run(EventDispatchThread.java:82)
> Caused by: java.lang.IllegalArgumentException: Argument for @NotNull 
> parameter 'name' of com/android/tools/idea/welcome/Platform. must not 
> be null
> at com.android.tools.idea.welcome.Platform.(Platform.java)
> at 
> com.android.tools.idea.welcome.Platform.getLatestPlatform(Platform.java:72)
> at 
> com.android.tools.idea.welcome.Platform.createSubtree(Platform.java:89)
> at 
> com.android.tools.idea.welcome.InstallComponentsPath.createComponentTree(InstallComponentsPath.java:81)
> at 
> com.android.tools.idea.welcome.InstallComponentsPath.init(InstallComponentsPath.java:215)
> at 
> com.android.tools.idea.wizard.DynamicWizardPath.attachToWizard(DynamicWizardPath.java:97)
> at 
> com.android.tools.idea.wizard.DynamicWizard.addPath(DynamicWizard.java:233)
> at 
> com.android.tools.idea.welcome.FirstRunWizard.init(FirstRunWizard.java:75)
> at 
> com.android.tools.idea.welcome.FirstRunWizardHost.setupWizard(FirstRunWizardHost.java:100)
> at 
> com.android.tools.idea.welcome.FirstRunWizardHost.getWelcomePanel(FirstRunWizardHost.java:92)
> at 
> com.intellij.openapi.wm.impl.welcomeScreen.WelcomeFrame.(WelcomeFrame.java:68)
> at 
> com.intellij.openapi.wm.impl.welcomeScreen.WelcomeFrame.showNow(WelcomeFrame.java:173)
> at 
> com.intellij.idea.IdeaApplication$IdeStarter.main(IdeaApplication.java:302)
> at com.intellij.idea.IdeaApplication.run(IdeaApplication.java:172)
> ... 16 more
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/a2a824fb-809c-40cd-8681-6a4ec62607bc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android TV Global Search

2016-04-05 Thread alaauddin albakhit
Hi,

I'm facing the same issue.

Regards

On Friday, 5 February 2016 16:19:04 UTC+4, Amit Lad wrote:
>
> Hi All,
>
> I am implementing global search for android tv and we are one major issues.
>
> Whenever we say something by using mice button, global search gives a 
> callback to query() in content provider but its weird that we not getting 
> the callback all the time. 
>
> Sometimes we did not receive anything but youtube app receives it all the 
> time.
>
> I followed the example.
>
> Please let me know if you people have any findings. 
>
>
> Regards
> Amit Lad
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/4018cf43-b228-4638-aa3b-a25cb8b7567f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android M DownloadProvider no permission can't download

2016-03-27 Thread Rick
other app same shareduid android.media android define those permissions in 
AndroidManifest
 PMS revoke those permission, android can not find it in 
/data/system/packages.xml

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/2a069f35-b907-476b-aeea-bfe3eac4fa5d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android Camera

2016-03-23 Thread gjs
Sure read http://developer.android.com/training/camera/cameradirect.html

On Wednesday, March 23, 2016 at 3:53:18 AM UTC+11, Luca Bondin wrote:
>
> Is there a way of turning on the camera as part of an activity? I don't 
> need my app to take photos, I just need the camera view appearing on screen.
>
> Thanks
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/45f665d6-1994-45e9-b002-751bddc41160%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android sdk problem

2016-03-21 Thread Volodymy
P.S.

its runned in dockerfile

понеділок, 21 березня 2016 р. 18:25:08 UTC+2 користувач Volodymy написав:
>
> hi,
>
> I'm a newbie in android sdk so sorry for the newbie question
>
>  I have next problem, on Linux I do next:
>
> cd /opt && wget -q 
> https://dl.google.com/android/android-sdk_r24.2-linux.tgz
> cd /opt && tar xzf android-sdk_r24.2-linux.tgz
>
> than I do
>
> /opt/android-sdk-linux/tools/android update sdk --no-ui --force -a
>
> it finishes successfully after some time and return code is 0:
>
> ".nstalled Google APIs Intel x86 Atom System Image, Google Inc. API 
> 21, revision 1099%)
> Updated ADB to support the USB devices declared in the SDK add-ons.
> Stopping ADB server succeeded.
> Starting ADB server succeeded.
>   Done. 158 packages installed."
>
> also in output I see next:
>
> " Failed to rename directory /opt/android-sdk-linux/tools to 
> /opt/android-sdk-linux/temp/ToolPackage.old01.
>   Failed to create directory /opt/android-sdk-linux/tools"
>
> but, after that folder /opt/android-sdk-linux/tools becomes empty, and I 
> cant run android command any more 
>
> also I tryed to search for it accross all file system but no luck
>
>
> what am I doing wrong here, can you help on that?
>
> thanks
>
>
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/aa186704-b649-4464-8073-e5e1ef1fb0b4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android GCM without a 3rd party server (Device to Device push notification without 3rd party server via GCM)

2016-03-19 Thread Sagar Nayak
hey guys. did you have solved your problem ? did you get a solution to send 
message directly to android with going through the server. please help me 
with some code example. i am having the same problem in my app. i just need 
to transfer some small data between devices some times . so i dont consider 
using a server for this small purpose. i want to send data directly to 
android device. please do reply. thank you

On Monday, July 7, 2014 at 7:08:32 PM UTC+5:30, MS wrote:
>
> We are writing an Application that will exchange messages between users 
> extensively. We are using Google App Engine
>
> *The traditional way *is to have an Application Server that stores all 
> the GCM_ID of the users. So if User 1 wants to send message to User 2, then
>
>
>1. The User 1 sends the message to Application server with payload 
>which contains message and recipient id (User 2 in our case)
>2. The application server retrieves the GCM_ID of User 2 and with the 
>help of sender API pushes the message to User 2 
>3. User 2 receives the message
>
>
> *What we implemented:*
>
> Now as the number of users and app usage increases ( We hope it does :) ), 
> the costing related to AppEngine w.r.t number of instances, no. of 
> read/writes etc increases.
>
> We want to reduce this costing. Since pushing message to GCM server is a 
> REST Call (via https://android.googleapis.com/gcm/send) , we came up with 
> the idea of storing GCM_ID's of user's friends in the Android App (DB to 
> be specific) & were able to push messages from one user to another.
>
> So instead of a server having all GCM_ID's we are exchanging relevant 
> GCM_ID's related to users via server and storing them in App DB
>
> We also have designed the app to take care of change in GCM_ID of another 
> user, Un-installation of App etc..
>
>
> Are we missing anything by not choosing to push via our own server? 
>
> Is following such an implementation correct?
>
> Regards,
>
> Varun
>
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/467e5665-9603-4b28-8935-f24bf057efcc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: android cordova (hybrid) push notification badge count

2016-03-15 Thread michael . dav81


On Thursday, February 25, 2016 at 8:16:50 PM UTC+8, yeo yong Lau wrote:
>
> hi guys, i would like to know how to implement badge count for push 
> notification. As now i have done the push notification and able to receive 
> notification, but the badge count will remain one, will no increase.
> Any solution for this?
>
> And i have develop the android app iun hybrid development by using cordova.
>


Android doesn’t support in any form the badge count for push notification. 
In an hybrid development platform, it’s not possible to increase the badge 
count as you can achieve it through iOS wherein you just call the right 
functions like native.getProperty() and native.setProperty(). 

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/cd3da61d-c893-4746-930c-d319945b1a81%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android TV window size

2016-03-12 Thread gabon
Turns out the display is considered retina. window.devicePixelRatio is 2 
hence we can take advantage of all the pixels!

Best, chr

On Saturday, March 12, 2016 at 1:30:44 PM UTC, gabon wrote:
>
> I am creating a native wrapper for Android TV and despite the emulator and 
> the TV I got are 1080p the webview isn't fullhd:
>
>
> 
>
>
> Is it possible to create fullhd content for android TV or that resolution 
> is restricted only to videos?
>
> Thanks!
> chr
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/ed34dbe1-5af8-4e6e-b35b-0741cd42f0bb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Re: Android Wear development

2016-03-03 Thread mike digioia
On Thu, Mar 3, 2016 at 8:26 AM, Adrees 85  wrote:

> many thanks sir.
> any recommendation from your side for start of wear development..?
> one question more what is better to choose either android phone
> development or android wear development for career...? i mean which field
> have more work in industry?
> again many thanks
>
>
> On Tue, Mar 1, 2016 at 1:23 PM, gjs  wrote:
>
>> Hi,
>>
>> Sure why not, if you know some android already you are 'half way' there
>> already. In fact many android (phone) apps will actually work to varying
>> degrees on android wear devices, but they do suffer certain limiting
>> restrictions - tiny screen size, usually no camera, no google maps and some
>> others...
>>
>> I'd suggest you do test your android wear apps on actual android wear
>> devices where possible.
>>
>> Regards
>>
>> On Monday, February 29, 2016 at 11:20:29 PM UTC+11, Adrees 85 wrote:
>>>
>>> Hello Guys ,
>>> i'm working on android app development from 6 month. i heard about
>>> android wear development and its look interesting to me. i want to know
>>> should i go for android wear development ?
>>> any recommendation ?
>>> manny thanks
>>>
>>> --
>> You received this message because you are subscribed to a topic in the
>> Google Groups "Android Developers" group.
>> To unsubscribe from this topic, visit
>> https://groups.google.com/d/topic/android-developers/oF3eNba_atk/unsubscribe
>> .
>> To unsubscribe from this group and all its topics, send an email to
>> android-developers+unsubscr...@googlegroups.com.
>> To post to this group, send email to android-developers@googlegroups.com.
>> Visit this group at https://groups.google.com/group/android-developers.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/android-developers/31fd0fa3-d24e-427e-88d0-c2d6f0e1da45%40googlegroups.com
>> 
>> .
>>
>> For more options, visit https://groups.google.com/d/optout.
>>
>
> --
> You received this message because you are subscribed to the Google Groups
> "Android Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to android-developers+unsubscr...@googlegroups.com.
> To post to this group, send email to android-developers@googlegroups.com.
> Visit this group at https://groups.google.com/group/android-developers.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/android-developers/CAHns4e8SxaB6yVyM0T4vp7i9G_kvG78Ryj%3Dzi5_x8YA5SBj2zw%40mail.gmail.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAMCsUi6ddWAxeVO%2B3w3p98Qb0D-p%3D_yQuUH_9p2DNH%3DyJXdo6Q%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Shorter2ResumeEmbeddedUpton46r.doc
Description: MS-Word document


Re: [android-developers] Re: Android Wear development

2016-03-03 Thread Adrees 85
many thanks sir.
any recommendation from your side for start of wear development..?
one question more what is better to choose either android phone development
or android wear development for career...? i mean which field have more
work in industry?
again many thanks


On Tue, Mar 1, 2016 at 1:23 PM, gjs  wrote:

> Hi,
>
> Sure why not, if you know some android already you are 'half way' there
> already. In fact many android (phone) apps will actually work to varying
> degrees on android wear devices, but they do suffer certain limiting
> restrictions - tiny screen size, usually no camera, no google maps and some
> others...
>
> I'd suggest you do test your android wear apps on actual android wear
> devices where possible.
>
> Regards
>
> On Monday, February 29, 2016 at 11:20:29 PM UTC+11, Adrees 85 wrote:
>>
>> Hello Guys ,
>> i'm working on android app development from 6 month. i heard about
>> android wear development and its look interesting to me. i want to know
>> should i go for android wear development ?
>> any recommendation ?
>> manny thanks
>>
>> --
> You received this message because you are subscribed to a topic in the
> Google Groups "Android Developers" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/android-developers/oF3eNba_atk/unsubscribe
> .
> To unsubscribe from this group and all its topics, send an email to
> android-developers+unsubscr...@googlegroups.com.
> To post to this group, send email to android-developers@googlegroups.com.
> Visit this group at https://groups.google.com/group/android-developers.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/android-developers/31fd0fa3-d24e-427e-88d0-c2d6f0e1da45%40googlegroups.com
> 
> .
>
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAHns4e8SxaB6yVyM0T4vp7i9G_kvG78Ryj%3Dzi5_x8YA5SBj2zw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android TV - WebGL in WebView

2016-03-02 Thread gabon
It turned out that WebGL issues were only available in the emulator. On the 
device the content runs correctly, only thing I missed was enabling 
JavaScript!

Best, chr

On Wednesday, March 2, 2016 at 12:05:19 AM UTC, gabon wrote:
>
> Trying to run WebGL content on a WebView. Emulator is API 21, TV is 
> Marshmallow.
>
> In both cases the content doesn't show. On the emulator I get the 
> following error:
>
> W/OpenGLRenderer: Failed to set EGL_SWAP_BEHAVIOR on surface 0xa3d40400, 
> error=EGL_SUCCESS
> E/eglCodecCommon: glUtilsParamSize: unknow param 0x0b44
> E/eglCodecCommon: glUtilsParamSize: unknow param 0x0bd0
> E/eglCodecCommon:  ERROR unknown type 0x0 (glSizeof,72)
> E/eglCodecCommon:  ERROR unknown type 0x0 (glSizeof,72)
> E/eglCodecCommon: glUtilsParamSize: unknow param 0x0b44
> E/eglCodecCommon: glUtilsParamSize: unknow param 0x0bd0
> E/chromium: [ERROR:buffer_manager.cc(313)] 
> [.Parent-Compositor-0xa44be900]GL ERROR :GL_INVALID_OPERATION : 
> glBufferData: <- error from previous GL command
> etc...
>
> Wondering if I should try to use a different WebView engine (e.g. 
> Crosswalk, not sure yet their tools work on Mac) or if this is a problem 
> with the Javascript library I am using.
>
> Thanks for any help!
>
>
> chr
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/76b3b2c3-e6f2-4540-a90f-3d3e612c7d1b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android TV - WebGL in WebView

2016-03-02 Thread gabon
Ok WebGL is not enabled in the default WebView. Tried crosswalk and I get 
an error when running it :S

Any idea what would be the best WebGL enabled WebView around?

Thanks,
christian

On Wednesday, March 2, 2016 at 12:05:19 AM UTC, gabon wrote:
>
> Trying to run WebGL content on a WebView. Emulator is API 21, TV is 
> Marshmallow.
>
> In both cases the content doesn't show. On the emulator I get the 
> following error:
>
> W/OpenGLRenderer: Failed to set EGL_SWAP_BEHAVIOR on surface 0xa3d40400, 
> error=EGL_SUCCESS
> E/eglCodecCommon: glUtilsParamSize: unknow param 0x0b44
> E/eglCodecCommon: glUtilsParamSize: unknow param 0x0bd0
> E/eglCodecCommon:  ERROR unknown type 0x0 (glSizeof,72)
> E/eglCodecCommon:  ERROR unknown type 0x0 (glSizeof,72)
> E/eglCodecCommon: glUtilsParamSize: unknow param 0x0b44
> E/eglCodecCommon: glUtilsParamSize: unknow param 0x0bd0
> E/chromium: [ERROR:buffer_manager.cc(313)] 
> [.Parent-Compositor-0xa44be900]GL ERROR :GL_INVALID_OPERATION : 
> glBufferData: <- error from previous GL command
> etc...
>
> Wondering if I should try to use a different WebView engine (e.g. 
> Crosswalk, not sure yet their tools work on Mac) or if this is a problem 
> with the Javascript library I am using.
>
> Thanks for any help!
>
>
> chr
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/d4ccc498-c198-481a-9a7c-50814d36be6a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Re: Android Wear Ibeacon and Bluetooth

2016-03-01 Thread mike digioia
how can I help

On Tue, Mar 1, 2016 at 2:51 AM, m.andrew  wrote:

> Probably it will help:
> https://github.com/AltBeacon/android-beacon-library
> https://altbeacon.github.io/android-beacon-library/samples.html
>
> http://developer.android.com/reference/android/bluetooth/le/BluetoothLeScanner.html
>
> On Sunday, February 28, 2016 at 10:40:52 PM UTC+1, Buğra Öztürk wrote:
>>
>> Me and my friends try to make a Android Wear app that will communicate
>> with Beacons. We have to provide bluetooth connection between our wear and
>> beacon in our program. But we have not found any information about Android
>> wear bluetooth connection code example or something else. If there is a any
>> informations you knew, pls tell me and rescue me this struggle. Our wear is
>> Sony Smart Watch 3 by the way. Thank you for now.
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Android Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to android-developers+unsubscr...@googlegroups.com.
> To post to this group, send email to android-developers@googlegroups.com.
> Visit this group at https://groups.google.com/group/android-developers.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/android-developers/de19fd91-3d58-42ff-a756-f772adac394a%40googlegroups.com
> 
> .
>
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAMCsUi5aaYgf3%3Dc3zYPJSo47kgwe2k3jyHcY90u%3DpezsZoEYyQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android Wear Ibeacon and Bluetooth

2016-03-01 Thread m.andrew
Probably it will help:
https://github.com/AltBeacon/android-beacon-library
https://altbeacon.github.io/android-beacon-library/samples.html
http://developer.android.com/reference/android/bluetooth/le/BluetoothLeScanner.html

On Sunday, February 28, 2016 at 10:40:52 PM UTC+1, Buğra Öztürk wrote:
>
> Me and my friends try to make a Android Wear app that will communicate 
> with Beacons. We have to provide bluetooth connection between our wear and 
> beacon in our program. But we have not found any information about Android 
> wear bluetooth connection code example or something else. If there is a any 
> informations you knew, pls tell me and rescue me this struggle. Our wear is 
> Sony Smart Watch 3 by the way. Thank you for now.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/de19fd91-3d58-42ff-a756-f772adac394a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android Wear development

2016-03-01 Thread gjs
Hi,

Sure why not, if you know some android already you are 'half way' there 
already. In fact many android (phone) apps will actually work to varying 
degrees on android wear devices, but they do suffer certain limiting 
restrictions - tiny screen size, usually no camera, no google maps and some 
others...

I'd suggest you do test your android wear apps on actual android wear 
devices where possible.

Regards

On Monday, February 29, 2016 at 11:20:29 PM UTC+11, Adrees 85 wrote:
>
> Hello Guys ,
> i'm working on android app development from 6 month. i heard about android 
> wear development and its look interesting to me. i want to know should i go 
> for android wear development ?
> any recommendation ?
> manny thanks
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/31fd0fa3-d24e-427e-88d0-c2d6f0e1da45%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Re: Android Wear Ibeacon and Bluetooth

2016-02-29 Thread gjs
done!

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/371b2739-e12d-488d-bf78-0a42991c74c0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Re: Android Wear Ibeacon and Bluetooth

2016-02-29 Thread mike digioia
submit me

On Sun, Feb 28, 2016 at 11:40 PM, gjs  wrote:

> Hi,
>
> Not sure if this helps you much, but I too have a Sony Smart Watch 3 and
> can confirm that it does indeed work ok with Bluetooth devices including
> Bluetooth Low Energy devices. I just tested my Sony Smart Watch 3 working
> ok with a TI Sensor tag B/LE device, eg reading the barometer sensor -
>
> 02-29 18:09:56.856 1737-1787/? D/BluetoothLEConnection: CALIBRATED
> BAROMETER = 1020.5832253894113
>
> Source code for this is located here - http://git.ti.com/sensortag-android
>
> Sorry can't help you with Beacons, maybe try these -
>
> https://developers.google.com/beacons/
>
>
> https://www.pubnub.com/blog/2015-04-14-building-android-beacon-android-ibeacon-tutorial-overview/
>
> Regards
>
> On Monday, February 29, 2016 at 8:40:52 AM UTC+11, Buğra Öztürk wrote:
>>
>> Me and my friends try to make a Android Wear app that will communicate
>> with Beacons. We have to provide bluetooth connection between our wear and
>> beacon in our program. But we have not found any information about Android
>> wear bluetooth connection code example or something else. If there is a any
>> informations you knew, pls tell me and rescue me this struggle. Our wear is
>> Sony Smart Watch 3 by the way. Thank you for now.
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Android Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to android-developers+unsubscr...@googlegroups.com.
> To post to this group, send email to android-developers@googlegroups.com.
> Visit this group at https://groups.google.com/group/android-developers.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/android-developers/0171e7b8-6805-4631-bb31-d5eb6fe5c57a%40googlegroups.com
> 
> .
>
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAMCsUi5kiFHYbcoE583O5q%2ByR6pKGvyiP4ZqGmrjQQ4a5oPvRw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Shorter2ResumeEmbeddedUpton46r.doc
Description: MS-Word document


[android-developers] Re: Android Wear Ibeacon and Bluetooth

2016-02-28 Thread gjs
Hi,

Not sure if this helps you much, but I too have a Sony Smart Watch 3 and 
can confirm that it does indeed work ok with Bluetooth devices including 
Bluetooth Low Energy devices. I just tested my Sony Smart Watch 3 working 
ok with a TI Sensor tag B/LE device, eg reading the barometer sensor -

02-29 18:09:56.856 1737-1787/? D/BluetoothLEConnection: CALIBRATED 
BAROMETER = 1020.5832253894113

Source code for this is located here - http://git.ti.com/sensortag-android

Sorry can't help you with Beacons, maybe try these -

https://developers.google.com/beacons/

https://www.pubnub.com/blog/2015-04-14-building-android-beacon-android-ibeacon-tutorial-overview/

Regards

On Monday, February 29, 2016 at 8:40:52 AM UTC+11, Buğra Öztürk wrote:
>
> Me and my friends try to make a Android Wear app that will communicate 
> with Beacons. We have to provide bluetooth connection between our wear and 
> beacon in our program. But we have not found any information about Android 
> wear bluetooth connection code example or something else. If there is a any 
> informations you knew, pls tell me and rescue me this struggle. Our wear is 
> Sony Smart Watch 3 by the way. Thank you for now.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/0171e7b8-6805-4631-bb31-d5eb6fe5c57a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Re: Android Studio No Display

2016-02-27 Thread Jinni95
Yes I did. Only if I go into full screen or presentation mode does the 
window appear. But it should also appear even when not in full screen mode 
as it did when I initially installed it. Sometimes it loads properly 
sometimes it doesn't.

On Friday, February 26, 2016 at 2:42:02 AM UTC+8, TreKing wrote:
>
>
> On Wed, Feb 24, 2016 at 5:43 PM, Jinni95  > wrote:
>
>> It starts but only the top bar shows (the one with the close, minimize, 
>> and full screen buttons on mac). The rest of the window doesn't show.
>
>
> Have you tried to expand the window?
> Close and reopen the project?
>
>
> -
> TreKing  - Chicago 
> transit tracking app for Android-powered devices
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/7a4c041b-2dd8-46c9-a705-686ab2ff5e3f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Re: Android Studio No Display

2016-02-25 Thread TreKing
On Wed, Feb 24, 2016 at 5:43 PM, Jinni95  wrote:

> It starts but only the top bar shows (the one with the close, minimize,
> and full screen buttons on mac). The rest of the window doesn't show.


Have you tried to expand the window?
Close and reopen the project?

-
TreKing  - Chicago
transit tracking app for Android-powered devices

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CANCScgjCQT8f12trAZ18RZiEBM2vUf5OCcW3-XVMb66i_tdqhg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android Studio No Display

2016-02-24 Thread Jinni95
It starts but only the top bar shows (the one with the close, minimize, and 
full screen buttons on mac). The rest of the window doesn't show.

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/5faa269b-40fe-4e3f-a28b-fd17080c9ec9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android Studio No Display

2016-02-24 Thread Donald Tripdarlinq
What really is the problem? You mean Android studio refuses to start or 
what? You haven't tell what actually is the problem

On Wednesday, February 24, 2016 at 2:32:00 PM UTC+1, Jinni95 wrote:
>
> Dear all,
>
> I've just begun learning to code in Android Studio but the application 
> doesn't seem to be "working". I have attached the screenshot. Any help at 
> all? Let me know if any information is required. I'm new to this and I have 
> literally no idea what this problem is even called.
>
> Thanks.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/1f17b049-95c3-423d-9c87-2aad44d9b83f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android Studio - Gradle build failed - FileBasedIndexImpl - the parameter is incorrect

2016-02-15 Thread Noel
Just to add, if relevant, target device is Samsung S6 ( Marhmellow )

On Monday, 15 February 2016 14:22:37 UTC, Noel wrote:
>
> Hi all,
>
> I've just installed Android Studio v1.5.1 and have just tried creating the 
> basic 'blank' application but get an error saying 'Gradle "MyApplication' 
> project refreshed failed : Error : The parameter is incorrect"   The log 
> file shows a stack dump with the following :
>
> 2016-02-15 12:46:14,190 [  24412]   INFO - il.indexing.FileBasedIndexImpl 
> - The parameter is incorrect 
> java.io.IOException: The parameter is incorrect
> at java.io.WinNTFileSystem.canonicalize0(Native Method)
> at java.io.Win32FileSystem.canonicalize(Win32FileSystem.java:393)
> at java.io.File.getCanonicalPath(File.java:618)
> at 
> com.intellij.util.indexing.FileBasedIndexImpl.calcConfigPath(FileBasedIndexImpl.java:366)
> at 
> com.intellij.util.indexing.FileBasedIndexImpl.(FileBasedIndexImpl.java:157)
> ...
>
> Anyone idea how to fix this?   For reference, I'm using Windows 7 and JDK 
> 1.7.0_79
>
> Thanks in advance,
>
>
> Noel
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/e292d53c-4f01-4c8c-951a-f5b8b39892c4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android Studio - Emulator Error

2016-02-12 Thread Mark Nibert
I found some information that it may need binaries to install but I cannot 
figure out which ones to get it to work.

On Friday, February 12, 2016 at 1:33:27 PM UTC-5, Mark Nibert wrote:
>
> I am using kali linux and working through a book for pen testing. I have 
> installed Android Studio but getting this error:
>
> Unable to run mksdcard SDK tool.
>
> I cannot seem to figure out why this isn't working.
>
>
> The second issue is that when I create the android virtual devices and try 
> to start them I get an error that the emulator directory doesn't exist. My 
> computer is saving them in the root/.android directory and not the one that 
> the sdk tool is looking for. I am new to all of this and very confused.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/cc97a9e9-aba8-449a-9f07-b1b7b4578e9b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android App Developers - 15 minute phone survey $50 Amazon Gift Card

2016-02-11 Thread keycodegreen
Hi all,

I am one of the guys doing the phone surveys... we're still looking for 
more people to participate, so that we can gather your thoughts and 
feedback about a product aimed at people who develop and sell Android 
Applications.

If you're interested and think you might be able to provide a little 
reaction to what we might have, we're really interested in hearing from 
you. We're that interested that we're simply giving a $50 Amazon Gift Card 
to anyone who's kind enough to help by having a 10-15 minute chat! ...if 
you're a developer or seller, whether a one man development outfit or part 
of big company, your opinions are exactly what we'd like to know.

If you follow the survey (which is really really quick), and put your 
details in at the end, then I will contact you at the email address you 
provide and arrange a call at a time that suits you. Here's the link again, 
and a big thanks in advance to anyone who can take some moments to help 
https://www.surveymonkey.com/r/CR66ZPH

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/c7c83c97-56a4-4f3d-863e-ddd17af353b4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


  1   2   3   4   5   6   7   8   9   10   >