Re: [android-developers] Re: What are my options

2016-11-30 Thread Richard Thompson
Nearby messages works on both Android and iOS https://developers.google.com/nearby/messages/overview On 30 November 2016 at 09:09, Nerox wrote: > Is there a method that I would find the same of it in iOS ? > a method that would work on both android and iOS.. > > -- >

Re: [android-developers] What are my options

2016-11-29 Thread Richard Thompson
You could use Nearby https://developers.google.com/nearby/. It has WiFi, ultrasonic and Bluetooth options which would work around the lack of internet connectivity, but it would require users to be on the same WiFi network or in relatively close proximity. On 29 November 2016 at 10:32, Nerox

Re: [android-developers] android device to test app

2016-05-03 Thread Richard Thompson
You will need to enable USB debugging. You can find instructions here http://www.phonearena.com/news/How-to-enable-USB-debugging-on-Android_id53909 On 3 May 2016 at 14:03, Shinehah wrote: > I have what I think is an Android smartphone. When I plug it into my

Re: [android-developers] java.lang.Exception: Method .. should be public When user junit 4.12.0

2016-04-25 Thread Richard Thompson
What error do you get then? On 25 April 2016 at 11:05, BruceAndroid wrote: > sorry on posted code method is not pubblic but on real code yes... > > Il giorno lunedì 25 aprile 2016 11:50:42 UTC+2, richarth ha scritto: >> >> You need to make the addActionWithHandler

Re: [android-developers] java.lang.Exception: Method .. should be public When user junit 4.12.0

2016-04-25 Thread Richard Thompson
You need to make the addActionWithHandler method public. On 25 April 2016 at 10:34, BruceAndroid wrote: > hello this my code > > > my test > > [code] > package UnitTests; > > import android.test.suitebuilder.annotation.SmallTest; > > import org.junit.Test; > > import

Re: [android-developers] Re: How do i rate and classificate my app on Google Play Store?

2015-12-15 Thread Richard Thompson
They probably think your app needs a more mature rating as potentially the video could contain anything. On 15 December 2015 at 13:32, Justanick wrote: > *Forgot to say, the app is a chat roulette like videochat, you can meet > strangers from all over the world.* > >

Re: [android-developers] need code for android app

2015-12-04 Thread Richard Thompson
You won't find a code sample for this specific application as it's so specific. I'd have a look at https://github.com/googlesamples?utf8=%E2%9C%93=android for samples of the different elements you may need. On 4 December 2015 at 09:14, ALL4BUSINESS wrote: > what

Re: [android-developers] ListView won't show up with Retrofit 2.0

2015-12-01 Thread Richard Thompson
You create the adapter with TelAdapter adapter = new TelAdapter (MainActivity.this, R.layout.list_item, data); Data is empty so you aren't seeing anything. You need to get the data out of response instead. On 1 December 2015 at 12:16, AbdulMajeed Mohammad wrote: > Any

Re: [android-developers] Problem when publishing next version of my App

2015-06-20 Thread Richard Thompson
Are you using Gradle for your build? If you are using Gradle for your build then the version settings in your Gradle file will take precedence over the value in your manifest file. If you open up the build.gradle file for your module in the defaultConfig block there will be two lines:

[android-developers] Overriding styles in different values files

2013-04-03 Thread Richard Thompson
Hi, I'm using the new fontFamily attribute so that I can control the weight of font used. Because this was only introduced in API level 16 I've created a styles file in values-v16. It seems a bit silly to declare the colour, size etc in both values and values-v16 but it is necessary for all

[android-developers] Setting input type pre cupcake

2009-11-22 Thread Richard Thompson
Hi, I have an application that I'd like to run on all versions of android. It uses an edit text field to allow the user to input a url. What I'd like to do is for donut users onwards is to set the input method to text uri to make input easier. This however means that I'd have to build it for

[android-developers] Headset pluged intent not firing

2009-10-14 Thread Richard Thompson
Hi there, I've been working on an application to detect when the headset is plugged in. My application can successfully receive broadcast intents such as airplane mode but when I plug my headphones in nothing happens with my app. If I triger the headset plugged intent in another app then my

[android-developers] headphone intent receiving

2009-10-13 Thread Richard Thompson
Hi there, I've been working on an application to detect when the headset is plugged in. My application can successfully receive broadcast intents such as airplane mode but when I plug my headphones in nothing happens with my app. If I triger the headset plugged intent in another app then my