You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-11-29 22:48:10 +02:00
Fixed React Native app to work with latest versions of packages and removed dependency to yarn
This commit is contained in:
BIN
ReactNativeClient/android/app/src/main/assets/fonts/Entypo.ttf
Normal file
BIN
ReactNativeClient/android/app/src/main/assets/fonts/Entypo.ttf
Normal file
Binary file not shown.
Binary file not shown.
BIN
ReactNativeClient/android/app/src/main/assets/fonts/Feather.ttf
Normal file
BIN
ReactNativeClient/android/app/src/main/assets/fonts/Feather.ttf
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
ReactNativeClient/android/app/src/main/assets/fonts/Ionicons.ttf
Normal file
BIN
ReactNativeClient/android/app/src/main/assets/fonts/Ionicons.ttf
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
ReactNativeClient/android/app/src/main/assets/fonts/Octicons.ttf
Normal file
BIN
ReactNativeClient/android/app/src/main/assets/fonts/Octicons.ttf
Normal file
Binary file not shown.
Binary file not shown.
BIN
ReactNativeClient/android/app/src/main/assets/fonts/Zocial.ttf
Normal file
BIN
ReactNativeClient/android/app/src/main/assets/fonts/Zocial.ttf
Normal file
Binary file not shown.
@@ -3,15 +3,16 @@ package net.cozic.joplin;
|
||||
import android.app.Application;
|
||||
|
||||
import com.facebook.react.ReactApplication;
|
||||
import com.rnfs.RNFSPackage;
|
||||
import com.facebook.react.ReactNativeHost;
|
||||
import com.facebook.react.ReactPackage;
|
||||
import com.facebook.react.shell.MainReactPackage;
|
||||
import com.facebook.soloader.SoLoader;
|
||||
import org.pgsqlite.SQLitePluginPackage;
|
||||
import com.RNFetchBlob.RNFetchBlobPackage;
|
||||
import com.oblador.vectoricons.VectorIconsPackage;
|
||||
import com.reactnativedocumentpicker.ReactNativeDocumentPicker;
|
||||
import com.RNFetchBlob.RNFetchBlobPackage;
|
||||
import com.rnfs.RNFSPackage;
|
||||
import fr.bamlab.rnimageresizer.ImageResizerPackage;
|
||||
import org.pgsqlite.SQLitePluginPackage;
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
@@ -27,12 +28,13 @@ public class MainApplication extends Application implements ReactApplication {
|
||||
@Override
|
||||
protected List<ReactPackage> getPackages() {
|
||||
return Arrays.<ReactPackage>asList(
|
||||
new SQLitePluginPackage(),
|
||||
new ImageResizerPackage(),
|
||||
new MainReactPackage(),
|
||||
new RNFSPackage(),
|
||||
new RNFetchBlobPackage(),
|
||||
new ReactNativeDocumentPicker(),
|
||||
new ImageResizerPackage()
|
||||
new RNFetchBlobPackage(),
|
||||
new RNFSPackage(),
|
||||
new SQLitePluginPackage(),
|
||||
new VectorIconsPackage()
|
||||
);
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user