File tree Expand file tree Collapse file tree 2 files changed +24
-3
lines changed Expand file tree Collapse file tree 2 files changed +24
-3
lines changed Original file line number Diff line number Diff line change @@ -10,4 +10,25 @@ export MAIL_URL="smtp://XXXXXXX@gmail.com:YYYYYYYY@smtp.gmail.com:465"
1010meteor-client bundle --url http://192.168.0.100:3000 -c meteor-client.config.json
1111
1212#Comando para instalar plugin de Facebook en el proyecto movil
13- ionic cordova plugin add cordova-plugin-facebook4@1.7.4 --variable APP_ID="128565331134597" --variable APP_NAME="devi4t"
13+ ionic cordova plugin add cordova-plugin-facebook4@1.7.4 --variable APP_ID="128565331134597" --variable APP_NAME="devi4t"
14+
15+ #Corrección de compilado para Android
16+ - Se debe agregar el siguiente fragmento de código en el archivo ` build.gradle ` que se encuentra en la ruta:
17+ > platforms/android/build.gradle
18+
19+ ```
20+ configurations.all {
21+ resolutionStrategy {
22+ force 'com.android.support:support-v4:27.1.0'
23+ }
24+ }
25+ ```
26+ - Se debe agregar la versión a las referencias de las librerias ` com.google.android.gms ` que se encuentra en el archivo ` project.properties `
27+ > platforms/android/project.properties
28+
29+ ```
30+ target=android-26
31+ android.library.reference.1=CordovaLib
32+ cordova.system.library.1=com.google.android.gms:play-services-maps:11.+
33+ cordova.system.library.2=com.google.android.gms:play-services-location:11.+
34+ ```
Original file line number Diff line number Diff line change 11__meteor_runtime_config__ = {
22 "meteorEnv": {},
3- "DDP_DEFAULT_CONNECTION_URL": "http://10.11.14.199 :3000/",
4- "ROOT_URL": "http://10.11.14.199 :3000/"
3+ "DDP_DEFAULT_CONNECTION_URL": "http://10.11.12.113 :3000/",
4+ "ROOT_URL": "http://10.11.12.113 :3000/"
55};
66
77//////////////////////////////////////////////////////////////////////////
You can’t perform that action at this time.
0 commit comments