Rename schemes, targets and fix doc
This commit is contained in:
Родитель
0b12fbc53f
Коммит
5f029d2bce
|
@ -6,8 +6,7 @@
|
|||
build/
|
||||
DerivedData/
|
||||
Products/
|
||||
Documentation/DocsAvalanche/Generated
|
||||
Documentation/DocsCrashes/Generated
|
||||
Documentation/**/Generated
|
||||
|
||||
## Various settings
|
||||
*.pbxuser
|
||||
|
|
|
@ -7,26 +7,27 @@
|
|||
objects = {
|
||||
|
||||
/* Begin PBXAggregateTarget section */
|
||||
E85547E41D2D681F002DF6E2 /* Fat Framework */ = {
|
||||
E85547E41D2D681F002DF6E2 /* AvalancheAnalyticsFramework */ = {
|
||||
isa = PBXAggregateTarget;
|
||||
buildConfigurationList = E85547E51D2D681F002DF6E2 /* Build configuration list for PBXAggregateTarget "Fat Framework" */;
|
||||
buildConfigurationList = E85547E51D2D681F002DF6E2 /* Build configuration list for PBXAggregateTarget "AvalancheAnalyticsFramework" */;
|
||||
buildPhases = (
|
||||
E85547E81D2D6827002DF6E2 /* ShellScript */,
|
||||
);
|
||||
dependencies = (
|
||||
);
|
||||
name = "Fat Framework";
|
||||
name = AvalancheAnalyticsFramework;
|
||||
productName = "Fat Framework";
|
||||
};
|
||||
E85547E91D2D68C5002DF6E2 /* Jazzy Docs */ = {
|
||||
E85547E91D2D68C5002DF6E2 /* AvalancheAnalyticsDoc */ = {
|
||||
isa = PBXAggregateTarget;
|
||||
buildConfigurationList = E85547EA1D2D68C5002DF6E2 /* Build configuration list for PBXAggregateTarget "Jazzy Docs" */;
|
||||
buildConfigurationList = E85547EA1D2D68C5002DF6E2 /* Build configuration list for PBXAggregateTarget "AvalancheAnalyticsDoc" */;
|
||||
buildPhases = (
|
||||
E85547ED1D2D68CF002DF6E2 /* ShellScript */,
|
||||
E85547ED1D2D68CF002DF6E2 /* Run Script */,
|
||||
);
|
||||
dependencies = (
|
||||
386352E41D51047400D0D450 /* PBXTargetDependency */,
|
||||
);
|
||||
name = "Jazzy Docs";
|
||||
name = AvalancheAnalyticsDoc;
|
||||
productName = "Jazzy Docs";
|
||||
};
|
||||
/* End PBXAggregateTarget section */
|
||||
|
@ -55,6 +56,13 @@
|
|||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXContainerItemProxy section */
|
||||
386352E31D51047400D0D450 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = E85547B81D2D6253002DF6E2 /* Project object */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = E85547E41D2D681F002DF6E2;
|
||||
remoteInfo = "Fat Framework";
|
||||
};
|
||||
E85547DB1D2D6723002DF6E2 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = E85547B81D2D6253002DF6E2 /* Project object */;
|
||||
|
@ -389,8 +397,8 @@
|
|||
targets = (
|
||||
E85547BF1D2D6253002DF6E2 /* AvalancheAnalytics */,
|
||||
E85547D41D2D6723002DF6E2 /* AvalancheAnalyticsTests */,
|
||||
E85547E41D2D681F002DF6E2 /* Fat Framework */,
|
||||
E85547E91D2D68C5002DF6E2 /* Jazzy Docs */,
|
||||
E85547E41D2D681F002DF6E2 /* AvalancheAnalyticsFramework */,
|
||||
E85547E91D2D68C5002DF6E2 /* AvalancheAnalyticsDoc */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
@ -419,18 +427,19 @@
|
|||
shellPath = /bin/sh;
|
||||
shellScript = "# Sets the target folders and the final framework product.\nFMK_NAME=AvalancheAnalytics\nFMK_VERSION=A\n\n# Install dir will be the final output to the framework.\n# The following line create it in the root folder of the current project.\nPRODUCTS_DIR=${SRCROOT}/../Products\nZIP_FOLDER=${FMK_NAME}\nTEMP_DIR=${PRODUCTS_DIR}/${ZIP_FOLDER}\nINSTALL_DIR=${TEMP_DIR}/${FMK_NAME}.framework\n\n# Working dir will be deleted after the framework creation.\nWRK_DIR=build\nDEVICE_DIR=${WRK_DIR}/Release-iphoneos\nSIMULATOR_DIR=${WRK_DIR}/Release-iphonesimulator\n\n# //////////////////////////////\n# Building Core Framework\n# //////////////////////////////\n\n# Building both architectures.\nxcodebuild -project \"${FMK_NAME}.xcodeproj\" -configuration \"Release\" -target \"${FMK_NAME}\" -sdk iphoneos\nxcodebuild -project \"${FMK_NAME}.xcodeproj\" -configuration \"Release\" -target \"${FMK_NAME}\" -sdk iphonesimulator\n\n# Cleaning the oldest.\nif [ -d \"${TEMP_DIR}\" ]\nthen\nrm -rf \"${TEMP_DIR}\"\nfi\n\n# Creates and renews the final product folder.\nmkdir -p \"${INSTALL_DIR}\"\nmkdir -p \"${INSTALL_DIR}/Modules\"\nmkdir -p \"${INSTALL_DIR}/Versions\"\nmkdir -p \"${INSTALL_DIR}/Versions/${FMK_VERSION}\"\nmkdir -p \"${INSTALL_DIR}/Versions/${FMK_VERSION}/Headers\"\n\n# Creates the internal links.\n# It MUST uses relative path, otherwise will not work when the folder is copied/moved.\nln -s \"${FMK_VERSION}\" \"${INSTALL_DIR}/Versions/Current\"\nln -s \"Versions/Current/Headers\" \"${INSTALL_DIR}/Headers\"\nln -s \"Versions/Current/${FMK_NAME}\" \"${INSTALL_DIR}/${FMK_NAME}\"\n\n# Copy the swift import file\ncp -f \"${SRCROOT}/${FMK_NAME}/Support/module.modulemap\" \"${INSTALL_DIR}/Modules/\"\n\n# Copies the headers and resources files to the final product folder.\ncp -R \"${SRCROOT}/${WRK_DIR}/Release-iphoneos/include/${FMK_NAME}/\" \"${INSTALL_DIR}/Versions/${FMK_VERSION}/Headers/\"\n\n# Uses the Lipo Tool to merge both binary files (i386 + armv6/armv7) into one Universal final product.\nlipo -create \"${DEVICE_DIR}/lib${FMK_NAME}.a\" \"${SIMULATOR_DIR}/lib${FMK_NAME}.a\" -output \"${INSTALL_DIR}/Versions/${FMK_VERSION}/${FMK_NAME}\"\n\n#rm -r \"${WRK_DIR}\"";
|
||||
};
|
||||
E85547ED1D2D68CF002DF6E2 /* ShellScript */ = {
|
||||
E85547ED1D2D68CF002DF6E2 /* Run Script */ = {
|
||||
isa = PBXShellScriptBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
inputPaths = (
|
||||
);
|
||||
name = "Run Script";
|
||||
outputPaths = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
shellPath = /bin/sh;
|
||||
shellScript = "jazzy --config ../Documentation/DocsCrashes/.jazzy.yaml -e ../AvalancheHub/AvalancheHub/AVAFeature.h";
|
||||
shellScript = "jazzy --config ../Documentation/DocsAnalytics/.jazzy.yaml";
|
||||
};
|
||||
/* End PBXShellScriptBuildPhase section */
|
||||
|
||||
|
@ -458,6 +467,11 @@
|
|||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXTargetDependency section */
|
||||
386352E41D51047400D0D450 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
target = E85547E41D2D681F002DF6E2 /* AvalancheAnalyticsFramework */;
|
||||
targetProxy = 386352E31D51047400D0D450 /* PBXContainerItemProxy */;
|
||||
};
|
||||
E85547DC1D2D6723002DF6E2 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
target = E85547BF1D2D6253002DF6E2 /* AvalancheAnalytics */;
|
||||
|
@ -658,7 +672,7 @@
|
|||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
E85547E51D2D681F002DF6E2 /* Build configuration list for PBXAggregateTarget "Fat Framework" */ = {
|
||||
E85547E51D2D681F002DF6E2 /* Build configuration list for PBXAggregateTarget "AvalancheAnalyticsFramework" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
E85547E61D2D681F002DF6E2 /* Debug */,
|
||||
|
@ -667,7 +681,7 @@
|
|||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
E85547EA1D2D68C5002DF6E2 /* Build configuration list for PBXAggregateTarget "Jazzy Docs" */ = {
|
||||
E85547EA1D2D68C5002DF6E2 /* Build configuration list for PBXAggregateTarget "AvalancheAnalyticsDoc" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
E85547EB1D2D68C5002DF6E2 /* Debug */,
|
||||
|
|
|
@ -26,7 +26,8 @@
|
|||
buildConfiguration = "Debug"
|
||||
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
||||
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
||||
shouldUseLaunchSchemeArgsEnv = "YES">
|
||||
shouldUseLaunchSchemeArgsEnv = "YES"
|
||||
codeCoverageEnabled = "YES">
|
||||
<Testables>
|
||||
<TestableReference
|
||||
skipped = "NO">
|
||||
|
|
|
@ -15,8 +15,8 @@
|
|||
<BuildableReference
|
||||
BuildableIdentifier = "primary"
|
||||
BlueprintIdentifier = "E85547E91D2D68C5002DF6E2"
|
||||
BuildableName = "Jazzy Docs"
|
||||
BlueprintName = "Jazzy Docs"
|
||||
BuildableName = "AvalancheAnalyticsDoc"
|
||||
BlueprintName = "AvalancheAnalyticsDoc"
|
||||
ReferencedContainer = "container:AvalancheAnalytics.xcodeproj">
|
||||
</BuildableReference>
|
||||
</BuildActionEntry>
|
||||
|
@ -46,8 +46,8 @@
|
|||
<BuildableReference
|
||||
BuildableIdentifier = "primary"
|
||||
BlueprintIdentifier = "E85547E91D2D68C5002DF6E2"
|
||||
BuildableName = "Jazzy Docs"
|
||||
BlueprintName = "Jazzy Docs"
|
||||
BuildableName = "AvalancheAnalyticsDoc"
|
||||
BlueprintName = "AvalancheAnalyticsDoc"
|
||||
ReferencedContainer = "container:AvalancheAnalytics.xcodeproj">
|
||||
</BuildableReference>
|
||||
</MacroExpansion>
|
||||
|
@ -64,8 +64,8 @@
|
|||
<BuildableReference
|
||||
BuildableIdentifier = "primary"
|
||||
BlueprintIdentifier = "E85547E91D2D68C5002DF6E2"
|
||||
BuildableName = "Jazzy Docs"
|
||||
BlueprintName = "Jazzy Docs"
|
||||
BuildableName = "AvalancheAnalyticsDoc"
|
||||
BlueprintName = "AvalancheAnalyticsDoc"
|
||||
ReferencedContainer = "container:AvalancheAnalytics.xcodeproj">
|
||||
</BuildableReference>
|
||||
</MacroExpansion>
|
|
@ -15,8 +15,8 @@
|
|||
<BuildableReference
|
||||
BuildableIdentifier = "primary"
|
||||
BlueprintIdentifier = "E85547E41D2D681F002DF6E2"
|
||||
BuildableName = "Fat Framework"
|
||||
BlueprintName = "Fat Framework"
|
||||
BuildableName = "AvalancheAnalyticsFramework"
|
||||
BlueprintName = "AvalancheAnalyticsFramework"
|
||||
ReferencedContainer = "container:AvalancheAnalytics.xcodeproj">
|
||||
</BuildableReference>
|
||||
</BuildActionEntry>
|
||||
|
@ -46,8 +46,8 @@
|
|||
<BuildableReference
|
||||
BuildableIdentifier = "primary"
|
||||
BlueprintIdentifier = "E85547E41D2D681F002DF6E2"
|
||||
BuildableName = "Fat Framework"
|
||||
BlueprintName = "Fat Framework"
|
||||
BuildableName = "AvalancheAnalyticsFramework"
|
||||
BlueprintName = "AvalancheAnalyticsFramework"
|
||||
ReferencedContainer = "container:AvalancheAnalytics.xcodeproj">
|
||||
</BuildableReference>
|
||||
</MacroExpansion>
|
||||
|
@ -64,8 +64,8 @@
|
|||
<BuildableReference
|
||||
BuildableIdentifier = "primary"
|
||||
BlueprintIdentifier = "E85547E41D2D681F002DF6E2"
|
||||
BuildableName = "Fat Framework"
|
||||
BlueprintName = "Fat Framework"
|
||||
BuildableName = "AvalancheAnalyticsFramework"
|
||||
BlueprintName = "AvalancheAnalyticsFramework"
|
||||
ReferencedContainer = "container:AvalancheAnalytics.xcodeproj">
|
||||
</BuildableReference>
|
||||
</MacroExpansion>
|
|
@ -2,39 +2,42 @@
|
|||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
*/
|
||||
|
||||
#import <UIKit/UIKit.h>
|
||||
#import "AVAFeature.h"
|
||||
#import <UIKit/UIKit.h>
|
||||
|
||||
/**
|
||||
* Avalanche analytics feature.
|
||||
*/
|
||||
@interface AVAAnalytics : NSObject <AVAFeature>
|
||||
|
||||
/**
|
||||
* Track an event
|
||||
* Track an event.
|
||||
*
|
||||
* @param eventName event name
|
||||
* @param properties dictionary of properties
|
||||
* @param eventName event name.
|
||||
* @param properties dictionary of properties.
|
||||
*/
|
||||
+ (void)trackEvent:(NSString*)eventName withProperties:(NSDictionary *)properties;
|
||||
+ (void)trackEvent:(NSString *)eventName withProperties:(NSDictionary *)properties;
|
||||
|
||||
/**
|
||||
* Track a page
|
||||
* Track a page.
|
||||
*
|
||||
* @param eventName page name
|
||||
* @param properties dictionary of properties
|
||||
* @param eventName page name.
|
||||
* @param properties dictionary of properties.
|
||||
*/
|
||||
+ (void)trackPage:(NSString*)pageName withProperties:(NSDictionary *)properties;
|
||||
+ (void)trackPage:(NSString *)pageName withProperties:(NSDictionary *)properties;
|
||||
|
||||
/**
|
||||
* Set the page auto-tracking property
|
||||
* Set the page auto-tracking property.
|
||||
*
|
||||
* @param isEnabled is page tracking enabled or disabled
|
||||
* @param isEnabled is page tracking enabled or disabled.
|
||||
*/
|
||||
|
||||
+ (void)setAutoPageTrackingEnabled:(BOOL)isEnabled;
|
||||
|
||||
/**
|
||||
* Indicate if auto page tracking is enabled or not
|
||||
* Indicate if auto page tracking is enabled or not.
|
||||
*
|
||||
* @return YES is page tracking is enabled and NO if disabled
|
||||
* @return YES is page tracking is enabled and NO if disabled.
|
||||
*/
|
||||
+ (BOOL)isAutoPageTrackingEnabled;
|
||||
|
||||
|
|
|
@ -7,26 +7,27 @@
|
|||
objects = {
|
||||
|
||||
/* Begin PBXAggregateTarget section */
|
||||
6E3729771D1DE83200F1E4AE /* Fat Framework */ = {
|
||||
6E3729771D1DE83200F1E4AE /* AvalancheCrashesFramework */ = {
|
||||
isa = PBXAggregateTarget;
|
||||
buildConfigurationList = 6E3729781D1DE83200F1E4AE /* Build configuration list for PBXAggregateTarget "Fat Framework" */;
|
||||
buildConfigurationList = 6E3729781D1DE83200F1E4AE /* Build configuration list for PBXAggregateTarget "AvalancheCrashesFramework" */;
|
||||
buildPhases = (
|
||||
6E37297B1D1DE85000F1E4AE /* ShellScript */,
|
||||
);
|
||||
dependencies = (
|
||||
);
|
||||
name = "Fat Framework";
|
||||
name = AvalancheCrashesFramework;
|
||||
productName = "Fat Framework";
|
||||
};
|
||||
6E6BFC361D23504F00DF7617 /* Jazzy Docs */ = {
|
||||
6E6BFC361D23504F00DF7617 /* AvalancheCrashesDoc */ = {
|
||||
isa = PBXAggregateTarget;
|
||||
buildConfigurationList = 6E6BFC391D23504F00DF7617 /* Build configuration list for PBXAggregateTarget "Jazzy Docs" */;
|
||||
buildConfigurationList = 6E6BFC391D23504F00DF7617 /* Build configuration list for PBXAggregateTarget "AvalancheCrashesDoc" */;
|
||||
buildPhases = (
|
||||
6E6BFC3A1D23505600DF7617 /* ShellScript */,
|
||||
);
|
||||
dependencies = (
|
||||
386352E61D51105800D0D450 /* PBXTargetDependency */,
|
||||
);
|
||||
name = "Jazzy Docs";
|
||||
name = AvalancheCrashesDoc;
|
||||
productName = "Jazzy Docs";
|
||||
};
|
||||
/* End PBXAggregateTarget section */
|
||||
|
@ -47,6 +48,13 @@
|
|||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXContainerItemProxy section */
|
||||
386352E51D51105800D0D450 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 6E04012B1D1C98690051BCFA /* Project object */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 6E3729771D1DE83200F1E4AE;
|
||||
remoteInfo = "Fat Framework";
|
||||
};
|
||||
6E171AE71D22F781000DC480 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 6E04012B1D1C98690051BCFA /* Project object */;
|
||||
|
@ -354,9 +362,9 @@
|
|||
projectRoot = "";
|
||||
targets = (
|
||||
6E0401321D1C98690051BCFA /* AvalancheCrashes */,
|
||||
6E3729771D1DE83200F1E4AE /* Fat Framework */,
|
||||
6E3729771D1DE83200F1E4AE /* AvalancheCrashesFramework */,
|
||||
6E171AE01D22F781000DC480 /* AvalancheCrashesTests */,
|
||||
6E6BFC361D23504F00DF7617 /* Jazzy Docs */,
|
||||
6E6BFC361D23504F00DF7617 /* AvalancheCrashesDoc */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
@ -396,7 +404,7 @@
|
|||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
shellPath = /bin/sh;
|
||||
shellScript = "jazzy --config ../Documentation/DocsCrashes/.jazzy.yaml -e ../AvalancheHub/AvalancheHub/AVAFeature.h";
|
||||
shellScript = "jazzy --config ../Documentation/DocsCrashes/.jazzy.yaml";
|
||||
};
|
||||
/* End PBXShellScriptBuildPhase section */
|
||||
|
||||
|
@ -420,6 +428,11 @@
|
|||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXTargetDependency section */
|
||||
386352E61D51105800D0D450 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
target = 6E3729771D1DE83200F1E4AE /* AvalancheCrashesFramework */;
|
||||
targetProxy = 386352E51D51105800D0D450 /* PBXContainerItemProxy */;
|
||||
};
|
||||
6E171AE81D22F781000DC480 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
target = 6E0401321D1C98690051BCFA /* AvalancheCrashes */;
|
||||
|
@ -653,7 +666,7 @@
|
|||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
6E3729781D1DE83200F1E4AE /* Build configuration list for PBXAggregateTarget "Fat Framework" */ = {
|
||||
6E3729781D1DE83200F1E4AE /* Build configuration list for PBXAggregateTarget "AvalancheCrashesFramework" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
6E3729791D1DE83200F1E4AE /* Debug */,
|
||||
|
@ -662,7 +675,7 @@
|
|||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
6E6BFC391D23504F00DF7617 /* Build configuration list for PBXAggregateTarget "Jazzy Docs" */ = {
|
||||
6E6BFC391D23504F00DF7617 /* Build configuration list for PBXAggregateTarget "AvalancheCrashesDoc" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
6E6BFC371D23504F00DF7617 /* Debug */,
|
||||
|
|
|
@ -26,7 +26,8 @@
|
|||
buildConfiguration = "Debug"
|
||||
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
||||
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
||||
shouldUseLaunchSchemeArgsEnv = "YES">
|
||||
shouldUseLaunchSchemeArgsEnv = "YES"
|
||||
codeCoverageEnabled = "YES">
|
||||
<Testables>
|
||||
<TestableReference
|
||||
skipped = "NO">
|
||||
|
|
|
@ -15,8 +15,8 @@
|
|||
<BuildableReference
|
||||
BuildableIdentifier = "primary"
|
||||
BlueprintIdentifier = "6E6BFC361D23504F00DF7617"
|
||||
BuildableName = "Jazzy Docs"
|
||||
BlueprintName = "Jazzy Docs"
|
||||
BuildableName = "AvalancheCrashesDoc"
|
||||
BlueprintName = "AvalancheCrashesDoc"
|
||||
ReferencedContainer = "container:AvalancheCrashes.xcodeproj">
|
||||
</BuildableReference>
|
||||
</BuildActionEntry>
|
||||
|
@ -46,8 +46,8 @@
|
|||
<BuildableReference
|
||||
BuildableIdentifier = "primary"
|
||||
BlueprintIdentifier = "6E6BFC361D23504F00DF7617"
|
||||
BuildableName = "Jazzy Docs"
|
||||
BlueprintName = "Jazzy Docs"
|
||||
BuildableName = "AvalancheCrashesDoc"
|
||||
BlueprintName = "AvalancheCrashesDoc"
|
||||
ReferencedContainer = "container:AvalancheCrashes.xcodeproj">
|
||||
</BuildableReference>
|
||||
</MacroExpansion>
|
||||
|
@ -64,8 +64,8 @@
|
|||
<BuildableReference
|
||||
BuildableIdentifier = "primary"
|
||||
BlueprintIdentifier = "6E6BFC361D23504F00DF7617"
|
||||
BuildableName = "Jazzy Docs"
|
||||
BlueprintName = "Jazzy Docs"
|
||||
BuildableName = "AvalancheCrashesDoc"
|
||||
BlueprintName = "AvalancheCrashesDoc"
|
||||
ReferencedContainer = "container:AvalancheCrashes.xcodeproj">
|
||||
</BuildableReference>
|
||||
</MacroExpansion>
|
|
@ -15,8 +15,8 @@
|
|||
<BuildableReference
|
||||
BuildableIdentifier = "primary"
|
||||
BlueprintIdentifier = "6E3729771D1DE83200F1E4AE"
|
||||
BuildableName = "Fat Framework"
|
||||
BlueprintName = "Fat Framework"
|
||||
BuildableName = "AvalancheCrashesFramework"
|
||||
BlueprintName = "AvalancheCrashesFramework"
|
||||
ReferencedContainer = "container:AvalancheCrashes.xcodeproj">
|
||||
</BuildableReference>
|
||||
</BuildActionEntry>
|
||||
|
@ -46,8 +46,8 @@
|
|||
<BuildableReference
|
||||
BuildableIdentifier = "primary"
|
||||
BlueprintIdentifier = "6E3729771D1DE83200F1E4AE"
|
||||
BuildableName = "Fat Framework"
|
||||
BlueprintName = "Fat Framework"
|
||||
BuildableName = "AvalancheCrashesFramework"
|
||||
BlueprintName = "AvalancheCrashesFramework"
|
||||
ReferencedContainer = "container:AvalancheCrashes.xcodeproj">
|
||||
</BuildableReference>
|
||||
</MacroExpansion>
|
||||
|
@ -64,8 +64,8 @@
|
|||
<BuildableReference
|
||||
BuildableIdentifier = "primary"
|
||||
BlueprintIdentifier = "6E3729771D1DE83200F1E4AE"
|
||||
BuildableName = "Fat Framework"
|
||||
BlueprintName = "Fat Framework"
|
||||
BuildableName = "AvalancheCrashesFramework"
|
||||
BlueprintName = "AvalancheCrashesFramework"
|
||||
ReferencedContainer = "container:AvalancheCrashes.xcodeproj">
|
||||
</BuildableReference>
|
||||
</MacroExpansion>
|
|
@ -2,10 +2,12 @@
|
|||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
*/
|
||||
|
||||
#import <UIKit/UIKit.h>
|
||||
#import "AVAFeature.h"
|
||||
#import <UIKit/UIKit.h>
|
||||
|
||||
@interface AVACrashes: NSObject <AVAFeature>
|
||||
/**
|
||||
* Avalanche crashes feature.
|
||||
*/
|
||||
@interface AVACrashes : NSObject <AVAFeature>
|
||||
|
||||
@end
|
||||
|
|
@ -30,7 +30,7 @@
|
|||
AVALogVerbose(@"AVACrashes: Started crash module");
|
||||
}
|
||||
|
||||
- (void)setDelegate:(id<AVAAvalancheDelegate>) delegate {
|
||||
- (void)setDelegate:(id<AVAAvalancheDelegate>)delegate {
|
||||
_delegate = delegate;
|
||||
}
|
||||
|
||||
|
|
|
@ -7,26 +7,27 @@
|
|||
objects = {
|
||||
|
||||
/* Begin PBXAggregateTarget section */
|
||||
6E04017D1D1CAC710051BCFA /* Fat Framework */ = {
|
||||
6E04017D1D1CAC710051BCFA /* AvalancheHubFramework */ = {
|
||||
isa = PBXAggregateTarget;
|
||||
buildConfigurationList = 6E0401801D1CAC710051BCFA /* Build configuration list for PBXAggregateTarget "Fat Framework" */;
|
||||
buildConfigurationList = 6E0401801D1CAC710051BCFA /* Build configuration list for PBXAggregateTarget "AvalancheHubFramework" */;
|
||||
buildPhases = (
|
||||
6E0401811D1CAC770051BCFA /* ShellScript */,
|
||||
);
|
||||
dependencies = (
|
||||
);
|
||||
name = "Fat Framework";
|
||||
name = AvalancheHubFramework;
|
||||
productName = "Fat Framework";
|
||||
};
|
||||
6E6BFC311D234FAE00DF7617 /* Jazzy Docs */ = {
|
||||
6E6BFC311D234FAE00DF7617 /* AvalancheHubDoc */ = {
|
||||
isa = PBXAggregateTarget;
|
||||
buildConfigurationList = 6E6BFC341D234FAE00DF7617 /* Build configuration list for PBXAggregateTarget "Jazzy Docs" */;
|
||||
buildConfigurationList = 6E6BFC341D234FAE00DF7617 /* Build configuration list for PBXAggregateTarget "AvalancheHubDoc" */;
|
||||
buildPhases = (
|
||||
6E6BFC351D234FBF00DF7617 /* ShellScript */,
|
||||
);
|
||||
dependencies = (
|
||||
386352EF1D5114F200D0D450 /* PBXTargetDependency */,
|
||||
);
|
||||
name = "Jazzy Docs";
|
||||
name = AvalancheHubDoc;
|
||||
productName = "Jazzy Docs";
|
||||
};
|
||||
/* End PBXAggregateTarget section */
|
||||
|
@ -110,6 +111,13 @@
|
|||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXContainerItemProxy section */
|
||||
386352EE1D5114F200D0D450 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 6E0400FB1D1C98220051BCFA /* Project object */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 6E04017D1D1CAC710051BCFA;
|
||||
remoteInfo = "Fat Framework";
|
||||
};
|
||||
6E23957E1D22EF4F00E543C8 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 6E0400FB1D1C98220051BCFA /* Project object */;
|
||||
|
@ -642,9 +650,9 @@
|
|||
projectRoot = "";
|
||||
targets = (
|
||||
6E0401021D1C98220051BCFA /* AvalancheHub */,
|
||||
6E04017D1D1CAC710051BCFA /* Fat Framework */,
|
||||
6E04017D1D1CAC710051BCFA /* AvalancheHubFramework */,
|
||||
6E2395771D22EF4F00E543C8 /* AvalancheHubTests */,
|
||||
6E6BFC311D234FAE00DF7617 /* Jazzy Docs */,
|
||||
6E6BFC311D234FAE00DF7617 /* AvalancheHubDoc */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
@ -742,6 +750,11 @@
|
|||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXTargetDependency section */
|
||||
386352EF1D5114F200D0D450 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
target = 6E04017D1D1CAC710051BCFA /* AvalancheHubFramework */;
|
||||
targetProxy = 386352EE1D5114F200D0D450 /* PBXContainerItemProxy */;
|
||||
};
|
||||
6E23957F1D22EF4F00E543C8 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
target = 6E0401021D1C98220051BCFA /* AvalancheHub */;
|
||||
|
@ -991,7 +1004,7 @@
|
|||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
6E0401801D1CAC710051BCFA /* Build configuration list for PBXAggregateTarget "Fat Framework" */ = {
|
||||
6E0401801D1CAC710051BCFA /* Build configuration list for PBXAggregateTarget "AvalancheHubFramework" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
6E04017E1D1CAC710051BCFA /* Debug */,
|
||||
|
@ -1009,7 +1022,7 @@
|
|||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
6E6BFC341D234FAE00DF7617 /* Build configuration list for PBXAggregateTarget "Jazzy Docs" */ = {
|
||||
6E6BFC341D234FAE00DF7617 /* Build configuration list for PBXAggregateTarget "AvalancheHubDoc" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
6E6BFC321D234FAE00DF7617 /* Debug */,
|
||||
|
|
|
@ -26,7 +26,8 @@
|
|||
buildConfiguration = "Debug"
|
||||
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
||||
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
||||
shouldUseLaunchSchemeArgsEnv = "YES">
|
||||
shouldUseLaunchSchemeArgsEnv = "YES"
|
||||
codeCoverageEnabled = "YES">
|
||||
<Testables>
|
||||
<TestableReference
|
||||
skipped = "NO">
|
||||
|
|
|
@ -15,8 +15,8 @@
|
|||
<BuildableReference
|
||||
BuildableIdentifier = "primary"
|
||||
BlueprintIdentifier = "6E6BFC311D234FAE00DF7617"
|
||||
BuildableName = "Jazzy Docs"
|
||||
BlueprintName = "Jazzy Docs"
|
||||
BuildableName = "AvalancheHubDoc"
|
||||
BlueprintName = "AvalancheHubDoc"
|
||||
ReferencedContainer = "container:AvalancheHub.xcodeproj">
|
||||
</BuildableReference>
|
||||
</BuildActionEntry>
|
||||
|
@ -46,8 +46,8 @@
|
|||
<BuildableReference
|
||||
BuildableIdentifier = "primary"
|
||||
BlueprintIdentifier = "6E6BFC311D234FAE00DF7617"
|
||||
BuildableName = "Jazzy Docs"
|
||||
BlueprintName = "Jazzy Docs"
|
||||
BuildableName = "AvalancheHubDoc"
|
||||
BlueprintName = "AvalancheHubDoc"
|
||||
ReferencedContainer = "container:AvalancheHub.xcodeproj">
|
||||
</BuildableReference>
|
||||
</MacroExpansion>
|
||||
|
@ -64,8 +64,8 @@
|
|||
<BuildableReference
|
||||
BuildableIdentifier = "primary"
|
||||
BlueprintIdentifier = "6E6BFC311D234FAE00DF7617"
|
||||
BuildableName = "Jazzy Docs"
|
||||
BlueprintName = "Jazzy Docs"
|
||||
BuildableName = "AvalancheHubDoc"
|
||||
BlueprintName = "AvalancheHubDoc"
|
||||
ReferencedContainer = "container:AvalancheHub.xcodeproj">
|
||||
</BuildableReference>
|
||||
</MacroExpansion>
|
|
@ -15,8 +15,8 @@
|
|||
<BuildableReference
|
||||
BuildableIdentifier = "primary"
|
||||
BlueprintIdentifier = "6E04017D1D1CAC710051BCFA"
|
||||
BuildableName = "Fat Framework"
|
||||
BlueprintName = "Fat Framework"
|
||||
BuildableName = "AvalancheHubFramework"
|
||||
BlueprintName = "AvalancheHubFramework"
|
||||
ReferencedContainer = "container:AvalancheHub.xcodeproj">
|
||||
</BuildableReference>
|
||||
</BuildActionEntry>
|
||||
|
@ -46,8 +46,8 @@
|
|||
<BuildableReference
|
||||
BuildableIdentifier = "primary"
|
||||
BlueprintIdentifier = "6E04017D1D1CAC710051BCFA"
|
||||
BuildableName = "Fat Framework"
|
||||
BlueprintName = "Fat Framework"
|
||||
BuildableName = "AvalancheHubFramework"
|
||||
BlueprintName = "AvalancheHubFramework"
|
||||
ReferencedContainer = "container:AvalancheHub.xcodeproj">
|
||||
</BuildableReference>
|
||||
</MacroExpansion>
|
||||
|
@ -64,8 +64,8 @@
|
|||
<BuildableReference
|
||||
BuildableIdentifier = "primary"
|
||||
BlueprintIdentifier = "6E04017D1D1CAC710051BCFA"
|
||||
BuildableName = "Fat Framework"
|
||||
BlueprintName = "Fat Framework"
|
||||
BuildableName = "AvalancheHubFramework"
|
||||
BlueprintName = "AvalancheHubFramework"
|
||||
ReferencedContainer = "container:AvalancheHub.xcodeproj">
|
||||
</BuildableReference>
|
||||
</MacroExpansion>
|
|
@ -6,48 +6,6 @@
|
|||
parallelizeBuildables = "YES"
|
||||
buildImplicitDependencies = "YES">
|
||||
<BuildActionEntries>
|
||||
<BuildActionEntry
|
||||
buildForTesting = "YES"
|
||||
buildForRunning = "YES"
|
||||
buildForProfiling = "YES"
|
||||
buildForArchiving = "YES"
|
||||
buildForAnalyzing = "YES">
|
||||
<BuildableReference
|
||||
BuildableIdentifier = "primary"
|
||||
BlueprintIdentifier = "6E04017D1D1CAC710051BCFA"
|
||||
BuildableName = "Fat Framework"
|
||||
BlueprintName = "Fat Framework"
|
||||
ReferencedContainer = "container:../AvalancheHub/AvalancheHub.xcodeproj">
|
||||
</BuildableReference>
|
||||
</BuildActionEntry>
|
||||
<BuildActionEntry
|
||||
buildForTesting = "YES"
|
||||
buildForRunning = "YES"
|
||||
buildForProfiling = "YES"
|
||||
buildForArchiving = "YES"
|
||||
buildForAnalyzing = "YES">
|
||||
<BuildableReference
|
||||
BuildableIdentifier = "primary"
|
||||
BlueprintIdentifier = "E85547E41D2D681F002DF6E2"
|
||||
BuildableName = "Fat Framework"
|
||||
BlueprintName = "Fat Framework"
|
||||
ReferencedContainer = "container:AvalancheAnalytics.xcodeproj">
|
||||
</BuildableReference>
|
||||
</BuildActionEntry>
|
||||
<BuildActionEntry
|
||||
buildForTesting = "YES"
|
||||
buildForRunning = "YES"
|
||||
buildForProfiling = "YES"
|
||||
buildForArchiving = "YES"
|
||||
buildForAnalyzing = "YES">
|
||||
<BuildableReference
|
||||
BuildableIdentifier = "primary"
|
||||
BlueprintIdentifier = "6E3729771D1DE83200F1E4AE"
|
||||
BuildableName = "Fat Framework"
|
||||
BlueprintName = "Fat Framework"
|
||||
ReferencedContainer = "container:../AvalancheCrashes/AvalancheCrashes.xcodeproj">
|
||||
</BuildableReference>
|
||||
</BuildActionEntry>
|
||||
<BuildActionEntry
|
||||
buildForTesting = "YES"
|
||||
buildForRunning = "YES"
|
||||
|
@ -57,9 +15,9 @@
|
|||
<BuildableReference
|
||||
BuildableIdentifier = "primary"
|
||||
BlueprintIdentifier = "6E6BFC311D234FAE00DF7617"
|
||||
BuildableName = "Jazzy Docs"
|
||||
BlueprintName = "Jazzy Docs"
|
||||
ReferencedContainer = "container:../AvalancheHub/AvalancheHub.xcodeproj">
|
||||
BuildableName = "AvalancheHubDoc"
|
||||
BlueprintName = "AvalancheHubDoc"
|
||||
ReferencedContainer = "container:AvalancheHub/AvalancheHub.xcodeproj">
|
||||
</BuildableReference>
|
||||
</BuildActionEntry>
|
||||
<BuildActionEntry
|
||||
|
@ -71,9 +29,9 @@
|
|||
<BuildableReference
|
||||
BuildableIdentifier = "primary"
|
||||
BlueprintIdentifier = "E85547E91D2D68C5002DF6E2"
|
||||
BuildableName = "Jazzy Docs"
|
||||
BlueprintName = "Jazzy Docs"
|
||||
ReferencedContainer = "container:AvalancheAnalytics.xcodeproj">
|
||||
BuildableName = "AvalancheAnalyticsDoc"
|
||||
BlueprintName = "AvalancheAnalyticsDoc"
|
||||
ReferencedContainer = "container:AvalancheAnalytics/AvalancheAnalytics.xcodeproj">
|
||||
</BuildableReference>
|
||||
</BuildActionEntry>
|
||||
<BuildActionEntry
|
||||
|
@ -85,9 +43,9 @@
|
|||
<BuildableReference
|
||||
BuildableIdentifier = "primary"
|
||||
BlueprintIdentifier = "6E6BFC361D23504F00DF7617"
|
||||
BuildableName = "Jazzy Docs"
|
||||
BlueprintName = "Jazzy Docs"
|
||||
ReferencedContainer = "container:../AvalancheCrashes/AvalancheCrashes.xcodeproj">
|
||||
BuildableName = "AvalancheCrashesDoc"
|
||||
BlueprintName = "AvalancheCrashesDoc"
|
||||
ReferencedContainer = "container:AvalancheCrashes/AvalancheCrashes.xcodeproj">
|
||||
</BuildableReference>
|
||||
</BuildActionEntry>
|
||||
</BuildActionEntries>
|
||||
|
@ -102,10 +60,10 @@
|
|||
<MacroExpansion>
|
||||
<BuildableReference
|
||||
BuildableIdentifier = "primary"
|
||||
BlueprintIdentifier = "6E04017D1D1CAC710051BCFA"
|
||||
BuildableName = "Fat Framework"
|
||||
BlueprintName = "Fat Framework"
|
||||
ReferencedContainer = "container:../AvalancheHub/AvalancheHub.xcodeproj">
|
||||
BlueprintIdentifier = "6E6BFC311D234FAE00DF7617"
|
||||
BuildableName = "AvalancheHubDoc"
|
||||
BlueprintName = "AvalancheHubDoc"
|
||||
ReferencedContainer = "container:AvalancheHub/AvalancheHub.xcodeproj">
|
||||
</BuildableReference>
|
||||
</MacroExpansion>
|
||||
<AdditionalOptions>
|
||||
|
@ -124,10 +82,10 @@
|
|||
<MacroExpansion>
|
||||
<BuildableReference
|
||||
BuildableIdentifier = "primary"
|
||||
BlueprintIdentifier = "6E04017D1D1CAC710051BCFA"
|
||||
BuildableName = "Fat Framework"
|
||||
BlueprintName = "Fat Framework"
|
||||
ReferencedContainer = "container:../AvalancheHub/AvalancheHub.xcodeproj">
|
||||
BlueprintIdentifier = "6E6BFC311D234FAE00DF7617"
|
||||
BuildableName = "AvalancheHubDoc"
|
||||
BlueprintName = "AvalancheHubDoc"
|
||||
ReferencedContainer = "container:AvalancheHub/AvalancheHub.xcodeproj">
|
||||
</BuildableReference>
|
||||
</MacroExpansion>
|
||||
<AdditionalOptions>
|
||||
|
@ -142,10 +100,10 @@
|
|||
<MacroExpansion>
|
||||
<BuildableReference
|
||||
BuildableIdentifier = "primary"
|
||||
BlueprintIdentifier = "6E04017D1D1CAC710051BCFA"
|
||||
BuildableName = "Fat Framework"
|
||||
BlueprintName = "Fat Framework"
|
||||
ReferencedContainer = "container:../AvalancheHub/AvalancheHub.xcodeproj">
|
||||
BlueprintIdentifier = "6E6BFC311D234FAE00DF7617"
|
||||
BuildableName = "AvalancheHubDoc"
|
||||
BlueprintName = "AvalancheHubDoc"
|
||||
ReferencedContainer = "container:AvalancheHub/AvalancheHub.xcodeproj">
|
||||
</BuildableReference>
|
||||
</MacroExpansion>
|
||||
</ProfileAction>
|
|
@ -17,7 +17,7 @@
|
|||
BlueprintIdentifier = "6E0401021D1C98220051BCFA"
|
||||
BuildableName = "libAvalancheHub.a"
|
||||
BlueprintName = "AvalancheHub"
|
||||
ReferencedContainer = "container:../AvalancheHub/AvalancheHub.xcodeproj">
|
||||
ReferencedContainer = "container:AvalancheHub/AvalancheHub.xcodeproj">
|
||||
</BuildableReference>
|
||||
</BuildActionEntry>
|
||||
<BuildActionEntry
|
||||
|
@ -31,7 +31,7 @@
|
|||
BlueprintIdentifier = "E85547BF1D2D6253002DF6E2"
|
||||
BuildableName = "libAvalancheAnalytics.a"
|
||||
BlueprintName = "AvalancheAnalytics"
|
||||
ReferencedContainer = "container:AvalancheAnalytics.xcodeproj">
|
||||
ReferencedContainer = "container:AvalancheAnalytics/AvalancheAnalytics.xcodeproj">
|
||||
</BuildableReference>
|
||||
</BuildActionEntry>
|
||||
<BuildActionEntry
|
||||
|
@ -45,7 +45,7 @@
|
|||
BlueprintIdentifier = "6E0401321D1C98690051BCFA"
|
||||
BuildableName = "libAvalancheCrashes.a"
|
||||
BlueprintName = "AvalancheCrashes"
|
||||
ReferencedContainer = "container:../AvalancheCrashes/AvalancheCrashes.xcodeproj">
|
||||
ReferencedContainer = "container:AvalancheCrashes/AvalancheCrashes.xcodeproj">
|
||||
</BuildableReference>
|
||||
</BuildActionEntry>
|
||||
</BuildActionEntries>
|
||||
|
@ -63,7 +63,7 @@
|
|||
BlueprintIdentifier = "6E2395771D22EF4F00E543C8"
|
||||
BuildableName = "AvalancheHubTests.xctest"
|
||||
BlueprintName = "AvalancheHubTests"
|
||||
ReferencedContainer = "container:../AvalancheHub/AvalancheHub.xcodeproj">
|
||||
ReferencedContainer = "container:AvalancheHub/AvalancheHub.xcodeproj">
|
||||
</BuildableReference>
|
||||
</TestableReference>
|
||||
<TestableReference
|
||||
|
@ -73,7 +73,7 @@
|
|||
BlueprintIdentifier = "6E171AE01D22F781000DC480"
|
||||
BuildableName = "AvalancheCrashesTests.xctest"
|
||||
BlueprintName = "AvalancheCrashesTests"
|
||||
ReferencedContainer = "container:../AvalancheCrashes/AvalancheCrashes.xcodeproj">
|
||||
ReferencedContainer = "container:AvalancheCrashes/AvalancheCrashes.xcodeproj">
|
||||
</BuildableReference>
|
||||
</TestableReference>
|
||||
<TestableReference
|
||||
|
@ -83,7 +83,7 @@
|
|||
BlueprintIdentifier = "E85547D41D2D6723002DF6E2"
|
||||
BuildableName = "AvalancheAnalyticsTests.xctest"
|
||||
BlueprintName = "AvalancheAnalyticsTests"
|
||||
ReferencedContainer = "container:AvalancheAnalytics.xcodeproj">
|
||||
ReferencedContainer = "container:AvalancheAnalytics/AvalancheAnalytics.xcodeproj">
|
||||
</BuildableReference>
|
||||
</TestableReference>
|
||||
</Testables>
|
||||
|
@ -93,7 +93,7 @@
|
|||
BlueprintIdentifier = "6E0401021D1C98220051BCFA"
|
||||
BuildableName = "libAvalancheHub.a"
|
||||
BlueprintName = "AvalancheHub"
|
||||
ReferencedContainer = "container:../AvalancheHub/AvalancheHub.xcodeproj">
|
||||
ReferencedContainer = "container:AvalancheHub/AvalancheHub.xcodeproj">
|
||||
</BuildableReference>
|
||||
</MacroExpansion>
|
||||
<AdditionalOptions>
|
||||
|
@ -115,7 +115,7 @@
|
|||
BlueprintIdentifier = "6E0401021D1C98220051BCFA"
|
||||
BuildableName = "libAvalancheHub.a"
|
||||
BlueprintName = "AvalancheHub"
|
||||
ReferencedContainer = "container:../AvalancheHub/AvalancheHub.xcodeproj">
|
||||
ReferencedContainer = "container:AvalancheHub/AvalancheHub.xcodeproj">
|
||||
</BuildableReference>
|
||||
</MacroExpansion>
|
||||
<AdditionalOptions>
|
||||
|
@ -133,7 +133,7 @@
|
|||
BlueprintIdentifier = "6E0401021D1C98220051BCFA"
|
||||
BuildableName = "libAvalancheHub.a"
|
||||
BlueprintName = "AvalancheHub"
|
||||
ReferencedContainer = "container:../AvalancheHub/AvalancheHub.xcodeproj">
|
||||
ReferencedContainer = "container:AvalancheHub/AvalancheHub.xcodeproj">
|
||||
</BuildableReference>
|
||||
</MacroExpansion>
|
||||
</ProfileAction>
|
|
@ -0,0 +1,29 @@
|
|||
objc: true
|
||||
clean: true
|
||||
sdk: iphonesimulator
|
||||
|
||||
theme: ../Themes/apple
|
||||
|
||||
module: Analytics
|
||||
module_version: 1.0.0
|
||||
author: Microsoft Corp
|
||||
author_url: http://www.microsoft.com
|
||||
|
||||
readme: Guides/Analytics.md
|
||||
documentation: ../Guides/[^index]*.md
|
||||
custom_categories:
|
||||
- name: Guides
|
||||
children:
|
||||
- Installation
|
||||
|
||||
umbrella_header: ../../Products/AvalancheAnalytics/AvalancheAnalytics.framework/Headers/AvalancheAnalytics.h
|
||||
framework_root: ../../Products/AvalancheAnalytics
|
||||
exclude: ../../Products/AvalancheAnalytics/AvalancheAnalytics.framework/Headers/AVAFeature.h
|
||||
|
||||
root_url: http://test.com/sdk/ios/1.0.0
|
||||
github_url: https://github.com/Microsoft/AvalancheSDK-iOS
|
||||
github_file_prefix: "https://github.com/Microsoft/AvalancheSDK-iOS"
|
||||
|
||||
skip_undocumented: true
|
||||
|
||||
output: Generated/
|
|
@ -0,0 +1 @@
|
|||
## Getting Started with Analytics
|
|
@ -16,13 +16,13 @@ custom_categories:
|
|||
children:
|
||||
- Installation
|
||||
|
||||
umbrella_header: ../../AvalancheHub/AvalancheHub/AvalancheHub.h
|
||||
framework_root: ../../AvalancheHub/
|
||||
umbrella_header: ../../Products/AvalancheHub/AvalancheHub.framework/Headers/AvalancheHub.h
|
||||
framework_root: ../../Products/AvalancheHub/
|
||||
|
||||
root_url: http://test.com/sdk/ios/1.0.0
|
||||
github_url: https://github.com/Microsoft/AvalancheSDK-iOS
|
||||
github_file_prefix: "https://github.com/Microsoft/AvalancheSDK-iOS"
|
||||
|
||||
skip_undocumented: false
|
||||
skip_undocumented: true
|
||||
|
||||
output: Generated/
|
||||
|
|
|
@ -16,8 +16,9 @@ custom_categories:
|
|||
children:
|
||||
- Installation
|
||||
|
||||
umbrella_header: ../../AvalancheCrashes/AvalancheCrashes/AvalancheCrashes.h
|
||||
framework_root: ../../AvalancheCrashes
|
||||
umbrella_header: ../../Products/AvalancheCrashes/AvalancheCrashes.framework/Headers/AvalancheCrashes.h
|
||||
framework_root: ../../Products/AvalancheCrashes
|
||||
exclude: ../../Products/AvalancheCrashes/AvalancheCrashes.framework/Headers/AVAFeature.h
|
||||
|
||||
root_url: http://test.com/sdk/ios/1.0.0
|
||||
github_url: https://github.com/Microsoft/AvalancheSDK-iOS
|
||||
|
|
Загрузка…
Ссылка в новой задаче