-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgogo.sh
executable file
·37 lines (28 loc) · 1.09 KB
/
gogo.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/bin/sh
# clean
rm pokemongo.ipa
# unzip
unzip -q "pokemon_unsigned.zip"
# cp dylib
cp LocationFaker.dylib Payload/pokemongo.app/libLocationFaker.dylib
# embedded.mobileprovision
cp embedded.mobileprovision Payload/pokemongo.app/embedded.mobileprovision
#copy edited info plist
cp Info_edited.plist Payload/pokemongo.app/Info.plist
#copy app icons to Payload/pokemongo.app/
command cp -R AppIcons/AppIcon57x57.png Payload/pokemongo.app/
command cp -R AppIcons/[email protected] Payload/pokemongo.app/
command cp -R AppIcons/[email protected] Payload/pokemongo.app/
command cp -R AppIcons/[email protected] Payload/pokemongo.app/
command cp -R AppIcons/AppIcon72x72@2x~ipad.png Payload/pokemongo.app/
command cp -R AppIcons/AppIcon72x72~ipad.png Payload/pokemongo.app/
command cp -R AppIcons/AppIcon76x76@2x~ipad.png Payload/pokemongo.app/
command cp -R AppIcons/AppIcon76x76~ipad.png Payload/pokemongo.app/
command cp -R AppIcons/AppIcon83.5x83.5@2x~ipad.png Payload/pokemongo.app/
# zip to ipa
zip -qr pokemongo.ipa Payload
#resign
fastlane ios resign
#clean
rm -rf "Payload"
rm -rf "__MACOSX"