Skip to content

Commit

Permalink
fix(android): remote policy encryption error dialog handling
Browse files Browse the repository at this point in the history
  • Loading branch information
jquick-axway authored and sgtcoolguy committed Apr 1, 2021
1 parent 2210af0 commit 222cba1
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
6 changes: 6 additions & 0 deletions android/templates/build/App.java
Original file line number Diff line number Diff line change
Expand Up @@ -130,4 +130,10 @@ public void onCreate()
<% }); %>
<% } %>
}

@Override
public void verifyCustomModules(TiRootActivity rootActivity)
{
// This method is needed by the "appc" CLI.
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -1004,4 +1004,12 @@ public AccessibilityManager getAccessibilityManager()
}
return accessibilityManager;
}

/**
* To be overridden by app template "./android/templates/app/App.java" to verify Titanium modules.
* @param rootActivity Splash screen activity needed to display a module verification error dialog.
*/
public void verifyCustomModules(TiRootActivity rootActivity)
{
}
}

0 comments on commit 222cba1

Please sign in to comment.