Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ti info implementation along with major Android and iOS related changes #9

Open
wants to merge 19 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions appcd-plugin-template/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@
"test": "gulp test"
},
"dependencies": {
"source-map-support": "^0.5.11"
"source-map-support": "^0.5.13"
},
"devDependencies": {
"appcd-gulp": "^2.1.0",
"gulp": "^4.0.0"
"appcd-gulp": "^2.1.1",
"gulp": "^4.0.2"
},
"homepage": "https://github.com/appcelerator/appc-daemon-plugins/tree/master/packages/appcd-plugin-template",
"bugs": "https://github.com/appcelerator/appc-daemon-plugins/issues",
Expand Down
1 change: 0 additions & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
{
"lerna": "3.13.2",
"version": "independent",
"npmClient": "yarn",
"packages": [
Expand Down
8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,20 @@
"version": "0.0.0",
"private": true,
"devDependencies": {
"lerna": "^3.13.2"
"lerna": "^3.16.4"
},
"scripts": {
"build": "lerna exec gulp build",
"link": "lerna exec yarn link"
"link": "lerna exec yarn link",
"unlink": "lerna exec yarn unlink"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"dependencies": {
"gulp": "^4.0.0"
"gulp": "^4.0.2",
"node-gyp": "^5.0.3"
}
}
39 changes: 24 additions & 15 deletions packages/plugin-android/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,33 +1,42 @@
# v2.0.0

* BREAKING CHANGE: Renamed 'sdk' and 'ndk' to 'sdks' and 'ndks'.
* BREAKING CHANGE: No longer scan for deprecated 'android' executable.
* BREAKING CHANGE: Removed 'targets'. Combine 'addons' and 'platforms' to get same result.
* fix: Fixed bug with selecting the correct default Android SDK.
* feat: Wired up live configuration changes.
[(DAEMON-198)](https://jira.appcelerator.org/browse/DAEMON-198)
* chore: Update dependencies.

# v1.4.0 (Jun 6, 2019)

* Updated config to remove redundant `android` namespace.
* fix: Updated config to remove redundant `android` namespace.
* chore: Switched `prepare` script to `prepack`.

# v1.3.0 (Mar 29, 2019)

* Upgraded to Gulp 4.
* Update dependencies
* Updated filesystem watching to use new `appcd.fs.watch()` and `appcd.fs.unwatch()` to optimize
subscriptions. [(DAEMON-253)](https://jira.appcelerator.org/browse/DAEMON-253)
* Utilize Genymotion service for detecting emulator changes instead of just watching the
VirtualBox config.
[(DAEMON-252)](https://jira.appcelerator.org/browse/DAEMON-252)
* chore: Upgraded to Gulp 4.
* chore: Update dependencies
* fix: Updated filesystem watching to use new `appcd.fs.watch()` and `appcd.fs.unwatch()` to
optimize subscriptions. [(DAEMON-253)](https://jira.appcelerator.org/browse/DAEMON-253)
* fix: Utilize Genymotion service for detecting emulator changes instead of just watching the
VirtualBox config. [(DAEMON-252)](https://jira.appcelerator.org/browse/DAEMON-252)

# v1.2.0 (Oct 25, 2018)

* Moved to `@appcd` scope
* Update dependencies
* Add Daemon 2.x support
* chore: Moved to `@appcd` scope
* chore: Update dependencies
* feat: Add Daemon 2.x support

# v1.1.0 (Apr 9, 2018)

* Removed `appcd-*` dependencies and locked down the appcd version in the `package.json`.
* fix: Removed `appcd-*` dependencies and locked down the appcd version in the `package.json`.
[(DAEMON-208)](https://jira.appcelerator.org/browse/DAEMON-208)
* Improved `adb` tracking to re-initialize device tracking as soon as adb is discovered.
* fix: Improved `adb` tracking to re-initialize device tracking as soon as adb is discovered.
[(DAEMON-164)](https://jira.appcelerator.org/browse/DAEMON-164)
* Add vbox config file to emulator watch paths.
* fix: Add vbox config file to emulator watch paths.
[(DAEMON-249)](https://jira.appcelerator.org/browse/DAEMON-249)
* Updated npm dependencies.
* chore: Updated dependencies.

# v1.0.0 (Dec 5, 2017)

Expand Down
29 changes: 3 additions & 26 deletions packages/plugin-android/conf/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ module.exports = {
},

/**
* The port number ADB is listening.
* The port to connect to ADB.
* @type {Number}
*/
port: null,
Expand All @@ -32,7 +32,7 @@ module.exports = {
avd: {
/**
* The path to where AVDs are stored.
* @type {Number}
* @type {String}
*/
path: null
},
Expand All @@ -49,7 +49,7 @@ module.exports = {

env: {
/**
* An override for the `PATH` environment variable.
* An override for the `PATH` environment variable for androidlib's ADB detection.
* @type {String}
*/
path: null
Expand All @@ -64,20 +64,6 @@ module.exports = {
},

genymotion: {
executables: {
/**
* The path to the genymotion executable.
* @type {String}
*/
genymotion: null,

/**
* The path to the genymotion player executable.
* @type {String}
*/
player: null
},

/**
* A list of paths to search for Genymotion.
* @type {Array.<String>}
Expand Down Expand Up @@ -108,15 +94,6 @@ module.exports = {
*/
configFile: null,

executables: {

/**
* The path to the `vboxmanage` executable.
* @type {String}
*/
vboxmanage: null,
},

/**
* A list of paths to search for VirtualBox.
* @type {Array.<String>}
Expand Down
15 changes: 7 additions & 8 deletions packages/plugin-android/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@appcd/plugin-android",
"version": "1.4.0",
"version": "2.0.0",
"description": "Android service for the Appc Daemon.",
"main": "./dist/index",
"author": "Appcelerator, Inc. <[email protected]>",
Expand All @@ -16,20 +16,19 @@
"test": "gulp test"
},
"dependencies": {
"androidlib": "^2.5.0",
"gawk": "^4.6.2",
"semver": "^6.0.0",
"source-map-support": "^0.5.11"
"androidlib": "^3.0.0",
"gawk": "^4.6.4",
"semver": "^6.3.0",
"source-map-support": "^0.5.13"
},
"devDependencies": {
"appcd-gulp": "^2.1.0",
"gulp": "^4.0.0"
"appcd-gulp": "^2.1.1"
},
"homepage": "https://github.com/appcelerator/appc-daemon-plugins/tree/master/packages/appcd-plugin-android",
"bugs": "https://github.com/appcelerator/appc-daemon-plugins/issues",
"repository": "https://github.com/appcelerator/appc-daemon-plugins",
"appcd": {
"appcdVersion": "1.x || 2.x",
"appcdVersion": "2.x",
"config": "./conf/config.js",
"name": "android",
"type": "external"
Expand Down
Loading