[android-developers] How Can I Send Notification to my Android App If I made an Entry on Server
Hi, I want to get a notification on my android device if i made a entry on Server side. I got to know after searching about this using gcm and c2dm we can do this. But the problem is i saw something like using gcm we can send only 100 notification per day. But my requirement is i want to send more than 100. Please help me to find a solution. Regards, Anees -- -- 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: Network error IOException while trying to Sync Data From SQL Server
Hi Sunghun, The Device is Connected to my System(That's in Same network) via USB. Is there any settings needs to be establish in Android Device. And my SQLServer has private IP. Please help me by guiding to solve this issue. Best Regards, Aadi -- 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
[android-developers] Re: what and all setting we have to do in device if we are syncing data using jtds,jdbc Connection
11-15 16:33:53.549: W/Error connection(5241): Network error IOException: Connection timed out This is the Error I'm Getting -- 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
[android-developers] Need Advice in Syncing Data From Android Device to SQL-Server Database
Hi, I wrote an application in android which will sync with SQL-server database that is sitting on my Local Server. while testing in real device using emulator it's not syncing Giving me IOException. I'm new to Android Technology. what my doubt is if i install this App in my android device when i have to perform sync operation by connecting the device through USB. Is there any need of Application to be installed that will help the device to sync data to Database. Please Help me to Solve this issue. Best Regards, Aadi -- 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
[android-developers] Network error IOException while trying to Sync Data From SQL Server
Hi, I'm trying to fetch data from my Local-Server Using an Android App. I established this using jtds.jdbc Connection. In Emulator It's working fine and fetching Data. While tried to connect using Android device through USB it's Giving the Following Error. 07-05 06:05:32.790: W/Error connection(4660): Network error IOException: failed to connect to /194.178.100.3 (port 1433): connect failed: ENETUNREACH (Network is unreachable) Here is the code which i'm using to connect SQL-Server Database Connection conn = DriverManager.getConnection("jdbc:jtds:sqlserver://194.178.100.3:1433/MyDB", "sa", "password"); I have Some Proxy Setting in My System i Doubt is that Blocking me while trying to access Server-Database. While syncing From USB device from my Computer. My Operating System is Windows 7 Professional, Service Pack 1 Please Help me to Solve this issue. Best Regards Aadi -- 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
[android-developers] Problem while Testing in Debugging Mode on Real Android Device
Hi, I'm developing a Application which will sync with local-server database. I used jtds.jdbc jar file to connect to Database on my Server. It's working fine in Emulator. While i tried to test the application in Real Device it's Giving me the Following Error in LogCat. D/SntpClient(59): request time failed: java.net.SocketException: Address family not supported by protocol I'm running on Windows 7 Professional (32-bit) Service Pack1 Eclipse-SDK-3.7.1-win32 If anyone knows why this error is coming please help me to solve this 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
[android-developers] Error while Connecting to MS Access Database From Android
I'm trying to retrieve data's from MS Access Database on my desktop. I didn't add any external jar file to retrieve data actually i don't know whether i have to export any external jar file for accomplishing this. Here is the code which i'm using to connect to Ms Access Database on my PC. String driver = "sun.jdbc.odbc.JdbcOdbcDriver"; Class.forName(driver).newInstance(); String path="D:/MS ACCESS DATABASE/mydatabase.mdb"; conn = DriverManager.getConnection("jdbc:odbc:Driver={Microsoft Access Driver (*.mdb)};DBQ="+path+";","","root" ); Log.w("Connection", "open"); Statement stmt = conn.createStatement(); ResultSet reset = stmt.executeQuery("select * from tblEmp"); while executing this i'm getting following error on my log-cat 10-25 11:31:40.545: W/Error connection(422): sun.jdbc.odbc.JdbcOdbcDriver Please Help me to Solve this 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
[android-developers] what and all setting we have to do in device if we are syncing data using jtds,jdbc Connection
*Hi,* *I have implemented an application in that for syncing data's to local database server i'm using jtds.jdbc connection.* *In my Emulator it's working fine and i'm able to sync data to and from local database. But when i packaged it and tried on my android device i'm unable to sync the data. * * * *What and all settings i have to do to make it work on my Android Device. Please help me to solve this issue.* * * *Best Regards,* *Aadi R* * * * * -- 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
[android-developers] How to Sync Database Data to a Desktop Application without internet connection..
I have a Desktop Application on .net and i wanted to make an Android Application which will sync database data's with-out Using internet. In Android App i'm Storing Data in SQLite Database.Is there any way to sync my app Database with Desktop Application Using USB connection?? -- 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
[android-developers] New to Android App Development need Advice in Designing UI
Hi Everyone, I'm going to develop an application for Android2.2 platform. I have some doubts while started creating UI Screen for my application. -> In my one UI i have 10 Text Views and 10 edit-text and i wanted to accommodate One List View also in my UI but i felt difficulty while adding ListView in my UI. Please Help me by giving suggestions. Thanks in Advance. Aadi -- 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
[android-developers] Doubt---Sync
Hello, I have a doubt - I have a webservice created using .net and installed on my local server and i created a Android application also. Is that possible to Sync a data in my application with webservice in local server.?? Please Help me Thanks Aadi -- 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
Re: [android-developers] Re: Barcode Scanning application can't create .apk instead it creating .jar
I got the necessary information thanks alot kris -- 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
Re: [android-developers] Re: Barcode Scanning application can't create .apk instead it creating .jar
I got the information's what thanks alot kris -- 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
Re: [android-developers] Re: Barcode Scanning application can't create .apk instead it creating .jar
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
Re: [android-developers] Re: Barcode Scanning application can't create .apk instead it creating .jar
Okay thanks. . .but i don't know how to create can u provide me some links so that i can understand more about this. Thanks alot for replying... Aadi -- 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
[android-developers] Barcode Scanning application can't create .apk instead it creating .jar
Hello..,, I create an application by integrating Zxing Package but i don't get .apk file i am getting myApplication.jar instead of myapplication.apk How can i resolve this issue Please Help me. Thanks Aadi R -- 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
[android-developers] How To Sync Data to Local PC
Hello, I want to create an Application that will sync data's in my application's database with my local PC. What all things i have to do to create this Application. I am new in Android Application Development Please help me to create this Application. Thanks And Regards, Aadi R -- 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