Re: [android-developers] Re: Android Project development cost

2012-03-22 Thread old new
10¥/hr  [?]

2012/3/22 asheesh arya 

> i will do 100us$ per minute!!
>
>  --
> 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 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<<1E3.gif>>

Re: [android-developers] Simple XML Error

2012-03-18 Thread old new
googleads:adSize

2012/3/18 CaRRtel Industres 

> Could someone please tell me why i get this error. "error: Error parsing
> XML: junk after document element" I am attempting to include ads at the
> bottom of my app and I can't figure out this problem.
>
> 
> android:layout_width="fill_parent"
>
> android:id="@+id/ad_layout"
>
> android:layout_height="wrap_content"
>
> android:gravity="bottom"
>
> android:layout_alightParentBottom="true" >
>
>
> 
> android:id="@+id/ad"
>
> android:layout_width="fill_parent"
>
> android:layout_height="wrap_content"
>
> googleads:adSize="BANNER"
>
> googleads:adUnitId="@string/admob_id"
>
> android:gravity="bottom" />
>
> 
>
>
> Thanks in advance
>
> --
> 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 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] Runtime.exec("su") issue.

2012-01-17 Thread old new
yes , If u exce "su" ,u must be get root permission first

2012/1/18 Putti Me 

> I try to execute the following code:
>
> *
>
> try
> {
>  Process process = Runtime.getRuntime().exec("su");
> // blah blah
> }
> catch (Exception e)
> {
>  res += "ERROR " + e.getMessage() + "\n";
> }
>
> *
>
> And I get the following exception::
>
> Error running exec(). Command: [su] Working Directory: null Environment:
> null
>
> Any reason why?
> Do I need "root" access on my device?
>
>
>
> --
> 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 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: How can I test SQLite

2011-12-12 Thread old new
adb shell
cd /data/data/your package name/databases
sqlite3 **.db

select * from your_table;
insert   update delete ..

2011/12/13 martypantsROK 

> use an external tool such as SQLite Data Browser or SQLiteSpy.  You
> can pull your db off the emulator
> and do whatever you want with it. You'll need a rooted phone to pull
> it off a real device
>
> On Dec 13, 9:13 am, SH  wrote:
> > Hi all.
> >
> > I am working with an Android app using SQLite. I want to see inside of
> > database and write an unit test to check CRUD works well. But I can't
> > find the db file the app is using. So please let me know how I can
> > find the .db file and make a unit test. Thanks in advance.
>
> --
> 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 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] response{"error":{"message":"An active access token must be used to query information about the current user.","type":"OAuthException"}} Android Facebook Post

2011-12-06 Thread old new
username or password is incorrect

2011/12/1 Naveen 

> Hello All,
>
>
> I am doing FaceBook wall posting with message, photo , and link ..in
> android getting response from facebook server
>
> response{"error":{"message":"An active access token must be used to
> query information about the current user.","type":"OAuthException"}}
>
>
> Please guide line me ..
>
> Regards,
> Naveen
>
> --
> 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 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] How to insert record in database

2011-12-06 Thread old new
sqlite database can operated in pc

2011/12/1 Mukesh Srivastav 

> Firstly,
>
> create a xml of all your scripts/data(country,city) and dump it into
> assets folder. from the use xml parsing and then Insert it.
>
> Warm Regards,
> *Mukesh Kumar*,
> Android Consultant/Freelancer,
> India,Hyderabad.
>
> On Thu, Dec 1, 2011 at 12:56 PM, dhaval  wrote:
>
>> Hi,
>> I need to insert Country city state data into database.
>>
>> it not possible to insert one by one...
>>
>> so i need to have a code which execute complete script which have lots
>> of Insert query..
>>
>> Plz 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
>
>
>
>
> --
>
>
>  --
> 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 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