mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-13 22:42:29 +03:00
18 lines
531 B
JavaScript
18 lines
531 B
JavaScript
module.exports = {
|
|
dependencies: {
|
|
'nodejs-mobile-react-native': {
|
|
// Ignored because we need to set this up manually in order to
|
|
// call some APIs of this library directly in our MainActivity.java
|
|
platforms: {
|
|
android: null,
|
|
},
|
|
},
|
|
'react-native-bluetooth-socket-bridge': {
|
|
// This package needs some config passed as arguments to the constructor
|
|
// so we need to "link" it manually in MainApplication.java
|
|
platforms: {
|
|
android: null,
|
|
},
|
|
},
|
|
},
|
|
};
|