From 66f81fa15c2c802a0466cb2b648e2fb4530dfeac Mon Sep 17 00:00:00 2001 From: Morgan McMillian Date: Fri, 8 Nov 2019 16:52:40 -0800 Subject: [PATCH] split config between testing and release to deal with cleartext restriction issue #90 --- Makefile | 2 + config.xml-release | 88 ++++++++++++++++++++++++++++++++ config.xml => config.xml-testing | 0 3 files changed, 90 insertions(+) create mode 100644 config.xml-release rename config.xml => config.xml-testing (100%) diff --git a/Makefile b/Makefile index 29d9a0b..e713cf7 100644 --- a/Makefile +++ b/Makefile @@ -19,9 +19,11 @@ device: ionic cordova run android -lc --address 0.0.0.0 --device emulator: + cp config.xml-testing config.xml ionic cordova run android -lc --address 0.0.0.0 --emulator $(UNALIGNED): + cp config.xml-release config.xml ionic cordova build android --release --prod $(ALIGNED): $(UNALIGNED) diff --git a/config.xml-release b/config.xml-release new file mode 100644 index 0000000..5e3a853 --- /dev/null +++ b/config.xml-release @@ -0,0 +1,88 @@ + + + Goober + Goober, a mobile app for pnut.io + Morgan McMillian + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/config.xml b/config.xml-testing similarity index 100% rename from config.xml rename to config.xml-testing