Commit 7508e15

mo khan <mo@mokhan.ca>
2016-12-24 22:43:11
remove .env files.
1 parent e8f0843
Changed files (3)
app/infrastructure/configuration.js
@@ -1,5 +1,5 @@
 var _defaults = {
-  API_HOST: 'https://www.stronglifters.com',
+  API_HOST: 'http://192.168.128.6:3000',
   ENV: 'production'
 };
 
.env.example
@@ -1,1 +0,0 @@
-API_HOST=https://www.stronglifters.com
Rakefile
@@ -2,7 +2,7 @@ namespace :release do
   desc "create android release"
   task :android do
     # https://facebook.github.io/react-native/docs/signed-apk-android.html
-    sh "cd android && ./gradlew assembleRelease"
+    sh "cd android && ./gradlew clean assembleRelease"
     sh "ls android/app/build/outputs/apk/app-release.apk"
   end
 end