Skip to content

Commit

Permalink
chore: temp remove ci error
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanneff committed Jan 31, 2017
1 parent 798f9c0 commit eadf928
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions hooks/lib/android/androidManifest.js
Original file line number Diff line number Diff line change
Expand Up @@ -224,20 +224,20 @@
return without
}

function getMainLaunchActivityIndex (activities) {
var launchActivityIndex = -1
// function getMainLaunchActivityIndex (activities) {
// var launchActivityIndex = -1

activities.some(function (activity, index) {
if (isLaunchActivity(activity)) {
launchActivityIndex = index
return true
}
// activities.some(function (activity, index) {
// if (isLaunchActivity(activity)) {
// launchActivityIndex = index
// return true
// }

return false
})
// return false
// })

return launchActivityIndex
}
// return launchActivityIndex
// }

function isLaunchActivity (activity) {
var intentFilters = activity['intent-filter']
Expand Down

0 comments on commit eadf928

Please sign in to comment.