[android-developers] BitmapMesh Refreshing

2013-11-01 Thread ashwini vandanapu
Dear All,


  In my android application, i want to apply image warp effect
for image. For that i use BitmapMesh from api demos. The problem is that,
it's not saving warped image. Whenever i touch image, it refresh the image
and doesn't save my previously warped image.I want to save that image
whenever user perform warp operation. If any one know kindly share with and
help me out.



ThanksRegards,
Ashwini V.

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
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.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [android-developers] Bluetooth connection

2013-11-01 Thread sting
Thats not the problem.  I need a device that when it is asked to connect 
with a SPP profile, it knows what to do.  I have a bluetooth card that I 
have configured to work in SPP mode but it seems that android still can't 
connect.  I just want to know what commands I need to send to the device to 
get it to connect.

On Thursday, October 31, 2013 8:23:05 AM UTC-7, Kristopher Micinski wrote:

 It seems that something like this would do the trick: 


 http://www.miniinthebox.com/bluetooth-master-uart-board-wireless-transceiver-module-uart-interface-host-mode_p394547.html?currency=USDlitb_from=paid_adwords_shoppinggclid=CJbo1KSwwboCFdGe4AodKzQAzQ
  

 It's got a UART interface and lets you stick raw bytes, I'd assume. 

 Kris 


 On Thu, Oct 31, 2013 at 1:15 AM, sting raymond...@gmail.com javascript: 
 wrote: 
  I am building a device that basically has a UART so I can send and 
 receive 
  bytes.  I want to be able to control the device, send configuration 
  information to the device, using an android phone.  Is there a way for 
 such 
  a simple device to establish a connection with the 
 BlueToothServer/socket. 
  All I think I need is the connection, then its a matter of transmitting 
  messages that are just strings. 
  
  Any help would be appreciated. 
  
  -- 
  You received this message because you are subscribed to the Google 
  Groups Android Developers group. 
  To post to this group, send email to 
  android-d...@googlegroups.comjavascript: 
  To unsubscribe from this group, send email to 
  android-developers+unsubscr...@googlegroups.com javascript: 
  For more options, visit this group at 
  http://groups.google.com/group/android-developers?hl=en 
  --- 
  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 javascript:. 
  For more options, visit https://groups.google.com/groups/opt_out. 


-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
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.
For more options, visit https://groups.google.com/groups/opt_out.


[android-developers] Re: Option to unlock the boot loader for Sony Ericsson Android Gingerbread phones now available.

2013-11-01 Thread kAmMa
is there any progress with fixing Xperia Z1 Unlocked Bootloader Camera 
issue ?

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
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.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [android-developers] dex issues with Latest SDK

2013-11-01 Thread Dan

Thanks for the hint.  I had a mismatched project.properties target= value
and AndroidManifest.xml SdkValue combo which was apparently harmless
before, but now seems to cause the dexopt to try to use both versions of
the platform jar.


On Thursday, October 31, 2013 10:26:18 PM UTC-4, Brad OHearne wrote: 
...snip... 

 After fixing that, all problems disappeared. I don’t know if this is going 
 to help you even a little, but I’ve spent the day stumbling around in the 
 spooky Halloween land of undocumented tools and APIs, and thought I’d at 
 least try to lend a hand. Good luck, and let me know if you are able to 
 make it through. 

 Cheers, 

 Brad

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
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.
For more options, visit https://groups.google.com/groups/opt_out.


[android-developers] How to make flavor?

2013-11-01 Thread Dmitriy Kazakov
I have a script

apply plugin: 'android'

repositories {
mavenCentral()
}

dependencies {
compile 'commons-io:commons-io:2.4'
compile 'com.actionbarsherlock:actionbarsherlock:4.4.0@aar'
compile 'com.android.support:support-v4:18.0.+'
compile 'com.google.android.gms:play-services:3.2.+@aar'
compile project(':ViewPagerIndicator')
compile project(':AndroidHorizontalListView')
}

android {
compileSdkVersion 18
buildToolsVersion 18.1.0

productFlavors {
main {
packageName com.example
}
flavor {
packageName com.example.flavor
}
}

sourceSets {
main {
manifest.srcFile 'AndroidManifest.xml'
java.srcDirs = ['src']
resources.srcDirs = ['src']
aidl.srcDirs = ['src']
renderscript.srcDirs = ['src']
res.srcDirs = ['res']
assets.srcDirs = ['assets']
}

hospa {
res.srcDirs = ['hospa/res']
}

// Move the tests to tests/java, tests/res, etc...
instrumentTest.setRoot('tests')

// Move the build types to build-types/type
// For instance, build-types/debug/java, 
build-types/debug/AndroidManifest.xml, ...
// This moves them out of them default location under 
src/type/... which would
// conflict with src/ being used by the main source set.
// Adding new build types or product flavors should be accompanied
// by a similar customization.
debug.setRoot('build-types/debug')
release.setRoot('build-types/release')
flavor.setRoot('build-types/hospa');
}

signingConfigs {
debug {
storeFile file('../debug.keystore')
}
}
} 

but when I run assembleFalvorDebug it build a main version app -- it 
doesn;t contains changes which flavor should have. I think issue in folders 
structure. I try a lot of different varian but result was the same. Could 
you please show which folder structure I should have for this case?

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
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.
For more options, visit https://groups.google.com/groups/opt_out.


[android-developers] Adding contacts to AIDL

2013-11-01 Thread Giles Ian
Is it possible to add constants to AIDL.

Thanks

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
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.
For more options, visit https://groups.google.com/groups/opt_out.