Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ protected void onPostExecute(String result) {
* A native method that is implemented by the 'native-lib' native library,
* which is packaged with this application.
*/
public native Integer startNodeWithArguments(String[] arguments);
public native int startNodeWithArguments(String[] arguments);

private boolean wasAPKUpdated() {
SharedPreferences prefs = getApplicationContext().getSharedPreferences("NODEJS_MOBILE_PREFS", Context.MODE_PRIVATE);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,5 +80,5 @@ protected void onPostExecute(String result) {
* A native method that is implemented by the 'native-lib' native library,
* which is packaged with this application.
*/
public native Integer startNodeWithArguments(String[] arguments);
public native int startNodeWithArguments(String[] arguments);
}