Joined
·
2,102 Posts
I think the F drive is the disk in your novel. I imagine you want to create a directory on your C: drive. Then you can put the apk you want to install in that directory, open the dos prompt and install. you install TO the device, rather than putting the file on the device and installingSay you create c:novel:move the file, let's say first.apk to c:novelopen the dos prompt - should be under applications in windowsstart adb, which will probably have to be done from the directory adb is in (you may want to put the apk file in the directory adb is in or vice versa to reduce steps)make sure adb is running - I usually type adb devices or adb remounttype adb install <filename>, here adb install c:novelfirst.apkAssuming I proofed that right, it should work.