0.1.0 • Published 2 years ago

react-native-open-calculator v0.1.0

Weekly downloads
3
License
ISC
Repository
github
Last release
2 years ago

Installation npm install react-native-open-calculator

Installation (Android)

In android/settings.gradle include ':react-native-calculator' project(':react-native-calculator').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-calculator/android')

In android/app/build.gradle ... dependencies{ ... implementation project(':react-native-calculator') }

In MainApplication.java import com.bahikhata.calculator.CalculatorPackage;

public List createAdditionalReactPackages() { return Arrays.asList( ..., new CalculatorPackage() ); }