This repository has been archived by the owner on Apr 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* support android app bundles * add android build types in turtle-cli * bump xdl version to 54.1.4 * update CHANGELOG.md
- Loading branch information
Showing
15 changed files
with
67 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import { IOS } from 'turtle/constants'; | ||
import { ANDROID_BUILD_TYPES, IOS_BUILD_TYPES } from 'turtle/constants'; | ||
|
||
export interface IShellAppDirectoryConfig { | ||
sdkVersion: string; | ||
buildType?: IOS.BUILD_TYPES; | ||
buildType?: IOS_BUILD_TYPES & ANDROID_BUILD_TYPES; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,19 @@ | ||
import * as BUILD from './build'; | ||
import * as IOS from './ios'; | ||
|
||
export enum PLATFORMS { | ||
IOS = 'ios', | ||
ANDROID = 'android', | ||
} | ||
|
||
export { IOS, BUILD }; | ||
export enum IOS_BUILD_TYPES { | ||
ARCHIVE = 'archive', | ||
CLIENT = 'client', | ||
SIMULATOR = 'simulator', | ||
} | ||
|
||
export enum ANDROID_BUILD_TYPES { | ||
APK = 'apk', | ||
APP_BUNDLE = 'app-bundle', | ||
} | ||
|
||
export { BUILD }; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1116,10 +1116,10 @@ | |
jimp "^0.6.0" | ||
mime "^2.4.0" | ||
|
||
"@expo/[email protected].3": | ||
version "54.1.3" | ||
resolved "https://registry.yarnpkg.com/@expo/xdl/-/xdl-54.1.3.tgz#02aa8c4c7acd35b01462ce62281235b81bf192a3" | ||
integrity sha512-X5jP2qM9nHhxUjeYOar9sAZMH2rX1quQPm4SM51B6DlKlMCyt8uCPHWXly72oZsBT3vT4t0G/Q3y+bvsqRQvzA== | ||
"@expo/[email protected].4": | ||
version "54.1.4" | ||
resolved "https://registry.yarnpkg.com/@expo/xdl/-/xdl-54.1.4.tgz#e92ca6efb57fea65262cf26385d0ef7f74bb627c" | ||
integrity sha512-VfzVWNen8yowb0rwmh1DQ3SoVd+IyyQg8jwucOG7eQ5va5V595Ot2foKgloG/GGli3rocA79y/8PaDq/yvpXMw== | ||
dependencies: | ||
"@expo/bunyan" "3.0.2" | ||
"@expo/config" "^2.0.0" | ||
|