Re: [android-developers] Re: Dynamically loading a .jar file at Runtime

2017-09-05 Thread 'Carmel Noe' via Android Developers
On Tue, 9/5/17, Larry D <francog...@gmail.com> wrote: Subject: Re: [android-developers] Re: Dynamically loading a .jar file at Runtime To: "Android Developers" <android-developers@googlegroups.com> Cc: hack...@andr

Re: [android-developers] Re: Dynamically loading a .jar file at Runtime

2017-09-05 Thread Larry D
Always the idiot who will not usefully reply to the question but instead offer unsolicited and related bull under false pretenses. Where are the moderators to block those imbeciles instead of moralizing and bullying the good people providing adequate support? On Thursday, March 19, 2009 at

[android-developers] Re: Dynamically loading a jar file at runtime

2012-06-11 Thread Chris Stratton
On Jun 11, 2:30 pm, TreKing treking...@gmail.com wrote: On Mon, Jun 11, 2012 at 2:11 AM, Reddy devireddy@gmail.com wrote: I have a requirement that i need to download a jar file dynamically at runtime and use a function present in the jar. I would expect that this would not be possible,

[android-developers] Re: Dynamically loading a jar file at runtime

2012-06-11 Thread Chris Stratton
On Jun 12, 1:00 am, Reddy devireddy@gmail.com wrote: 1. Jar files contains some encryption/decryption algorithms. 2. Algorithms should not present in the application. I really hope you aren't hoping that will prevent others from seeing those algorithms. -- You received this message

Re: [android-developers] Re: Dynamically loading a jar file at runtime

2012-06-11 Thread Kristopher Micinski
On Tue, Jun 12, 2012 at 1:41 AM, Chris Stratton cs07...@gmail.com wrote: On Jun 11, 2:30 pm, TreKing treking...@gmail.com wrote: On Mon, Jun 11, 2012 at 2:11 AM, Reddy devireddy@gmail.com wrote: I have a requirement that i need to download a jar file dynamically at runtime and use a

Re: [android-developers] Re: Dynamically loading a .jar file at Runtime

2010-03-23 Thread Dianne Hackborn
/data/app-private is not your directory, and not for applications to touch. Please read the SDK documentation on files and storage. On Thu, Mar 19, 2009 at 3:04 AM, Asif k asifk1...@gmail.com wrote: Yes I can push file to /data/app-private/ directory using DDMS but not programmatically.

[android-developers] Re: Dynamically loading a .jar file at Runtime

2009-03-19 Thread Dianne Hackborn
On Wed, Mar 18, 2009 at 10:18 PM, Asif k asifk1...@gmail.com wrote: Security will be one concern but , my plan is to load the required .jar files in the sdcard only when it is necessary and I will remove that .jar files from the /sdcard when my application execution completes. That

[android-developers] Re: Dynamically loading a .jar file at Runtime

2009-03-19 Thread Asif k
Hi Dianne, Yes you are right, But Is there any way to store over .jar file in the app's data directory. Because I am working on emulator and I can store any file there. Please tell the way I can store in the data dir. And yes any alternate idea to call the .jar files dynamically at

[android-developers] Re: Dynamically loading a .jar file at Runtime

2009-03-19 Thread Dianne Hackborn
You can put whatever you want in your private data directory. On Wed, Mar 18, 2009 at 11:15 PM, Asif k asifk1...@gmail.com wrote: Hi Dianne, Yes you are right, But Is there any way to store over .jar file in the app's data directory. Because I am working on emulator and I can store any

[android-developers] Re: Dynamically loading a .jar file at Runtime

2009-03-19 Thread Asif k
Yes I can push file to /data/app-private/ directory using DDMS but not programmatically. But I want to call .jar file at runtime to complete my task. Please any suggestion On Mar 19, 12:19 pm, Dianne Hackborn hack...@android.com wrote: You can put whatever you want in your private data

[android-developers] Re: Dynamically loading a .jar file at Runtime

2009-03-18 Thread fadden
On Mar 18, 7:29 am, Asif k asifk1...@gmail.com wrote:   I am storing the required test.jar file in the /sdcard. I want to load it dynamically at runtime and want to execute a function xyz() resides in that. For this purpose   I had written following code , This doesn't work -- in 1.0 you

[android-developers] Re: Dynamically loading a .jar file at Runtime

2009-03-18 Thread Dianne Hackborn
Also keep in mind that doing this kind of thing is completely insecure. Any app can go and modify your files on the sd card to insert their own code into your app and run under your identity. Then any malicious things they do with your app's permissions are the fault of your app. On Wed, Mar

[android-developers] Re: Dynamically loading a .jar file at Runtime

2009-03-18 Thread Asif k
Hi all, Thanks for your reply. Security will be one concern but , my plan is to load the required .jar files in the sdcard only when it is necessary and I will remove that .jar files from the /sdcard when my application execution completes. I want to do this because I wanna run