Skip to content

Commit 8e42ec8

Browse files
authored
🤝 Merge pull request #42 from Instabug/feature/spliiting_release
Feature/spliiting release
2 parents 4224791 + af986e7 commit 8e42ec8

File tree

143 files changed

+512
-1794
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

143 files changed

+512
-1794
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ android {
2121
}
2222

2323
dependencies {
24-
compile 'com.instabug.library:instabug:4.3.3'
24+
compile 'com.instabug.library:instabug:4.5.0'
2525
compile 'com.android.support:multidex:1.0.0'
2626
}

plugin.xml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,11 @@
5050
<service android:name="com.instabug.library.network.worker.uploader.InstabugSessionUploaderService" />
5151
<service android:name="com.instabug.library.bugreporting.network.InstabugBugsUploaderService" />
5252
<service android:name="com.instabug.crash.network.InstabugCrashesUploaderService" />
53-
<service android:name="com.instabug.library.messaging.InstabugMessageUploaderService" />
5453
<service android:name="com.instabug.library.network.worker.fetcher.InstabugFeaturesFetcherService" />
5554
<service android:name="com.instabug.survey.network.service.InstabugSurveysSubmitterService" />
5655
<service android:name="com.instabug.library.internal.video.VideoProcessingService"/>
56+
<service android:name="com.instabug.library.analytics.network.InstabugAnalyticsUploaderService"/>
57+
<service android:name="com.instabug.chat.network.InstabugMessageUploaderService"/>
5758

5859
<receiver android:name="com.instabug.library.network.InstabugNetworkReceiver">
5960
<intent-filter>
@@ -89,8 +90,9 @@
8990
<param name="onload" value="true" />
9091
</feature>
9192
</config-file>
92-
93+
9394
<framework src="src/ios/Instabug.framework" custom="true" embed="true" />
95+
<framework src="src/ios/InstabugCore.framework" custom="true" embed="true" />
9496
<hook type="after_plugin_install" src="scripts/zStripScript.js" />
9597
<header-file src="src/ios/IBGPlugin.h" />
9698
<source-file src="src/ios/IBGPlugin.m" />

scripts/zStripScript.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ module.exports = function(context) {
5757
projectName = projectName.substr(0, projectName.length - 1);
5858
}
5959

60-
var options = {shellPath: '/bin/sh', shellScript: 'bash "${PROJECT_DIR}/${PRODUCT_NAME}/Plugins/com.instabug.cordova.plugin/Instabug.framework/Instabug.bundle/strip-frameworks.sh"', runOnlyForDeploymentPostprocessing: 0};
60+
var options = {shellPath: '/bin/sh', shellScript: 'bash "${BUILT_PRODUCTS_DIR}/${FRAMEWORKS_FOLDER_PATH}/InstabugCore.framework/strip-frameworks.sh"', runOnlyForDeploymentPostprocessing: 0};
6161
var buildPhase = myProj.addBuildPhase([], 'PBXShellScriptBuildPhase', 'StripFrameworkScript', myProj.getFirstTarget().uuid, options).buildPhase;
6262

6363
fs.writeFileSync(projectPath, myProj.writeSync());

0 commit comments

Comments
 (0)