Is there a simple way to have external properties for an android APK? -
i have android application gets invoked through adb on desktop machine. have properties file on desktop machine android application somehow needs aware of, need external apk.
on desktop (which invoke activities within apk via adb) cannot repackage apk .properties file , re-install apk on phone (i tried via aapt, not preferable because removes signature on apk , cannot resign apk on particular desktop machine).
i rather not pass them via intent extras, there lot of them, , cannot use adb shell setprop because doesn't work while phone running. cannot put them on external storage because not guaranteed phone have sd card. can put them in "internal storage" somewhere (if exists) ?
i need able pass numerous properties onto device when install apk, cannot put them in apk itself, , not devices have sd cards.
any ideas ?
take @ method used here: android: transfer sqlite database pc device via usb programatically
Comments
Post a Comment