Skip to content

Commit

Permalink
Updating Unity plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
Bucimis committed Jul 26, 2019
1 parent 16b5b48 commit 8181022
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 0 additions & 1 deletion Assets/Plugins/Appboy/Editor/PostBuild.cs
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,6 @@ private static void ModifyProject(string projectPath) {
}

AddFileToEmbedFrameworks(project, target, Application.dataPath + "/Plugins/iOS/SDWebImage.framework", "Frameworks/Plugins/iOS/SDWebImage.framework");
AddFileToEmbedFrameworks(project, target, Application.dataPath + "/Plugins/iOS/FLAnimatedImage.framework", "Frameworks/Plugins/iOS/FLAnimatedImage.framework");
AddFileToEmbedFrameworks(project, target, Application.dataPath + "/Plugins/iOS/Appboy_iOS_SDK.framework", "Frameworks/Plugins/iOS/Appboy_iOS_SDK.framework");

project.AddBuildProperty(target, "LD_RUNPATH_SEARCH_PATHS", "@executable_path/Frameworks");
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 1.19.0

##### Breaking
- Updated the iOS plugin to use [Braze iOS SDK 3.16.0](https://github.com/Appboy/appboy-ios-sdk/releases/tag/3.16.0).

## 1.18.0

##### Breaking
Expand Down
3 changes: 0 additions & 3 deletions scripts/generate_package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

APPBOY_IOS_SDK="Appboy_iOS_SDK.framework"
SD_WEB_IMAGE="SDWebImage.framework"
FL_ANIMATED_IMAGE="FLAnimatedImage.framework"
PROJECT_ROOT=$( cd "$( dirname "${BASH_SOURCE[0]}" )/.." && pwd )
LIBRARIES_PATH=$PROJECT_ROOT/Libraries
IOS_PLUGINS_PATH=$PROJECT_ROOT/Assets/Plugins/iOS
Expand All @@ -19,14 +18,12 @@ fi
echo "Deleting iOS libraries from Assets/Plugins/iOS/"
[ -e $IOS_PLUGINS_PATH/$APPBOY_IOS_SDK ] && rm -rf $IOS_PLUGINS_PATH/$APPBOY_IOS_SDK*
[ -e $IOS_PLUGINS_PATH/$SD_WEB_IMAGE ] && rm -rf $IOS_PLUGINS_PATH/$SD_WEB_IMAGE*
[ -e $IOS_PLUGINS_PATH/$FL_ANIMATED_IMAGE ] && rm -rf $IOS_PLUGINS_PATH/$FL_ANIMATED_IMAGE*


echo "Copying iOS libraries from Libraries/ to Assets/Plugins/iOS/"
cp -R $LIBRARIES_PATH/$APPBOY_IOS_SDK/ $IOS_PLUGINS_PATH/$APPBOY_IOS_SDK/ &
if [ "$EXCLUDE_DEPENDENCIES" = false ]; then
cp -R $LIBRARIES_PATH/$SD_WEB_IMAGE $IOS_PLUGINS_PATH/$SD_WEB_IMAGE
cp -R $LIBRARIES_PATH/$FL_ANIMATED_IMAGE $IOS_PLUGINS_PATH/$FL_ANIMATED_IMAGE
fi &
wait

Expand Down

0 comments on commit 8181022

Please sign in to comment.