[android-developers] Gradle sync failed

2017-01-14 Thread April Potter
I downloaded Android 2.2 on my windows 7 which is a x86(32 bit) system and this is the error i keep getting Please help 5:08:02 AM Gradle sync failed: CreateProcess error=216, This version of %1 is not compatible with the version of Windows you're running. Check your computer's system

[android-developers] Issue With License Test Response - Dev Console

2017-01-14 Thread Pete Nixon
Hi guys, I'm having an issue testing licensing of my app which is currently in beta in the dev console. At the moment I am getting no responses from the app (no matter which test response I use). I have made sure my gmail account is in both the beta testers list and the license testing

[android-developers] Target device does not support the run as command

2017-01-14 Thread Jon Prichard
hi, I am a complete beginner and have just started using android studio. when I try to run the following code on my Samsung S7 edge I get the message 'unfortunately, my first app has stopped' and android studio says 'target device does not support the 'run-as' command'. please can you help me

[android-developers] system update

2017-01-14 Thread pakya raj
How can i update 4.4 kitkat to marshmallow or lollipop -- 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

[android-developers] Can't run application

2017-01-14 Thread Abrar Hossain
Hi there, I am new to Android development and, whilst making a simple app, I ran across this error when I tried to run the app. Here are the configurations for my system: Intel Core i5 3rd gen 8GB of RAM OS: OpenSuse Tumbleweed Here is the error message being raised: Cannot launch AVD in

[android-developers] Using "findViewbyId' in Broadcast Receiver

2017-01-14 Thread abdullah zaman
How can I use findViewById() in a Broadcast Receiver class. Below is my code snippet. I get the error message: "can't resolve method findViewById" if used directly without class constructor (because find View by Id is Activity method and cant be used in Broadcast Receiver i suppose) . And if i

Re: [android-developers] Can't run application

2017-01-14 Thread Marina Cuello
I run a quick Google search and found this issue: https://code.google.com/p/android/issues/detail?id=201266. Did you try the solutions marked there already? Marina On Sat, Jan 14, 2017 at 6:08 PM, Abrar Hossain wrote: > Hi there, > > I am new to Android development

Re: [android-developers] generate signed apk error

2017-01-14 Thread Marina Cuello
You would probably find more help on Cordova specific list or forum, I think we're here mostly Android SDK developers and perhaps won't be able to help you. Marina On Sat, Jan 14, 2017 at 12:54 PM, Suthesan Rasamanikam wrote: > can anyone help me? why i get this error? > >

Re: [android-developers] Target device does not support the run as command

2017-01-14 Thread Marina Cuello
What you are pasting here is not "code", so it's not really helpful. But I guess what you're saying is that to check the crash you need to see the logcat, and then you see the "blah blah blah run-as" error message. That error message can appear when there is something wrong with your general

[android-developers] How to initialize stuff that depends on the view’s attributes

2017-01-14 Thread rraallvv
Hello community, I'm trying to get some parameters from the XML layout to be passed to some instance var like this: public class MyView extends GLSurfaceView { private MyRenderer mRenderer; public MyView(Context ctx, AttributeSet attrs) { super(ctx, attrs); init(ctx);