Skip to content

Commit a29a05a

Browse files
author
Leonardo Espinosa Torres
authored
Merge pull request #83 from RealbindDevTeam/readme
Readme
2 parents 0d35ecf + ccb7981 commit a29a05a

File tree

2 files changed

+24
-3
lines changed

2 files changed

+24
-3
lines changed

README.md

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,25 @@ export MAIL_URL="smtp://XXXXXXX@gmail.com:YYYYYYYY@smtp.gmail.com:465"
1010
meteor-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+
```

i4t_mobile/meteor-client.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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
//////////////////////////////////////////////////////////////////////////

0 commit comments

Comments
 (0)