Skip to content

Instantly share code, notes, and snippets.

@arifkoken
Created August 22, 2017 08:42
Show Gist options
  • Save arifkoken/6c3bec477fa45c4969bd3a521317bc52 to your computer and use it in GitHub Desktop.
Save arifkoken/6c3bec477fa45c4969bd3a521317bc52 to your computer and use it in GitHub Desktop.
.
.
.
import org.pgsqlite.SQLitePluginPackage;//Eklememeiz gereken satır
public class MainApplication extends Application implements ReactApplication {
.
.
.
@Override
protected List<ReactPackage> getPackages() {
return Arrays.<ReactPackage>asList(
new MainReactPackage(),
new SQLitePluginPackage()//Eklememiz gereken satır.
);
}
};
.
.
.
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment