我目前的公司正在将应用程序从Xamarin迁移到React Native。 问题是将当前令牌存储在Xamarin的SQLite中,来自React Native。
这是在Xamarin中初始化SQLite的代码:
public static SQLiteConnection conn = new SQLiteConnection(System.IO.Path.Combine
(System.Environment.GetFolderPath(System.Environment.SpecialFolder.Personal), "user.db"));
我尝试使用以下方法从RN检索:https://github.com/andpor/react-native-sqlite-storage
但似乎我们需要指定文件夹路径。我不知道Xamarin中的文件夹路径在哪里。
提前感谢您的回答。
答案 0 :(得分:2)
System.Environment.GetFolderPath(System.Environment.SpecialFolder.Personal)
/data/data/@PACKAGE_NAME@/files
@APP_PATH@/Documents