Skip to content

Commit

Permalink
Merge pull request #4085 from sanikoyes/Pr-adb-keep-user-data
Browse files Browse the repository at this point in the history
Add -r flag to adb install for keep app user data
  • Loading branch information
akien-mga committed Mar 19, 2016
2 parents b8daa7e + 9e026fe commit 6cf978b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions platform/android/export/export.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1567,6 +1567,7 @@ Error EditorExportPlatformAndroid::run(int p_device, int p_flags) {
args.push_back("-s");
args.push_back(devices[p_device].id);
args.push_back("install");
args.push_back("-r");
args.push_back(export_to);

err = OS::get_singleton()->execute(adb,args,true,NULL,NULL,&rv);
Expand Down

0 comments on commit 6cf978b

Please sign in to comment.