Skip to content

Commit 51d392b

Browse files
authored
Migrate to 9.0.0 structure
Update AppCenter SDK to 3.0.0
1 parent 0e065c3 commit 51d392b

32 files changed

+52
-524
lines changed

.gitignore

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,7 @@
1-
/android/build
2-
/android/dist
3-
/android/libs
4-
/android/java-sources.txt
51
*.iml
6-
.gradle
7-
/local.properties
82
/.idea
93
.DS_Store
10-
/build
114
/captures
12-
.externalNativeBuild
135
/ios/build
146
/ios/*.zip
157

README.md

Lines changed: 6 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -8,36 +8,17 @@ App Center Crashes will automatically generate a crash log every time your app c
88
App Center Analytics helps you understand user behavior and customer engagement to improve your app. The SDK automatically captures session count, device properties like model, OS version, etc. You can define your own custom events to measure things that matter to you. All the information captured is available in the App Center portal for you to analyze the data.
99

1010
## Requirements
11-
- Titanium Mobile SDK 7.0.0.GA or later
11+
- Titanium Mobile SDK 9.0.0.GA or later
1212

1313
## Building
1414

15-
### Android
16-
17-
Run from the `android` directory
18-
>`./gradlew tiBuild`
19-
20-
**Important:** module dependencies are not included in this repository. Command above will download them for you.
21-
22-
If for some reasons you want to build this module using only `appc` or `titanium` cli commands, you should download App Center SDK and put into `android/app/libs` (or `android/lib` which is symlink). After that you should run:
23-
24-
>`appc run -p android --build-only`
25-
26-
or
27-
28-
>`ti build -p android --build-only`
29-
30-
from the `android` directory
31-
32-
### iOS
33-
3415
Update SDK version and its location in `ios/titanium.xcconfig` if you need.
35-
Run from `ios` directory
36-
>`appc run -p ios --build-only`
3716

38-
or
17+
Run from platform directory ([Appcelerator CLI](https://github.com/appcelerator/appc-install)):
18+
>`appc run -p [android|ios] --build-only`
3919
40-
>`ti build -p ios --build-only`
20+
or ([Titanium CLI](https://github.com/appcelerator/titanium)):
21+
>`ti build -p [android|ios] --build-only`
4122
4223
## Install
4324

@@ -50,7 +31,7 @@ Add the module as a dependency to your application by editing `tiapp.xml`.
5031
Example:
5132

5233
<modules>
53-
<module version="1.0.1">ru.netris.mobile.appcenter</module>
34+
<module>ru.netris.mobile.appcenter</module>
5435
</modules>
5536

5637
When you run your project, the compiler will combine module along with its dependencies

android/.classpath

Lines changed: 0 additions & 11 deletions
This file was deleted.

android/.gitattributes

Lines changed: 0 additions & 1 deletion
This file was deleted.

android/.gitignore

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,3 @@
11
/build
22
/dist
3-
/libs
4-
/java-sources.txt
5-
*.iml
6-
.gradle
7-
/local.properties
8-
/.idea
9-
.DS_Store
10-
/build
11-
/captures
12-
.externalNativeBuild
133

android/.project

Lines changed: 0 additions & 29 deletions
This file was deleted.

android/.settings/org.eclipse.jdt.apt.core.prefs

Lines changed: 0 additions & 7 deletions
This file was deleted.

android/.settings/org.eclipse.jdt.core.prefs

Lines changed: 0 additions & 3 deletions
This file was deleted.

android/app/.gitignore

Lines changed: 0 additions & 4 deletions
This file was deleted.

android/app/build.gradle

Lines changed: 0 additions & 57 deletions
This file was deleted.

0 commit comments

Comments
 (0)