Skip to content
This repository has been archived by the owner on Aug 14, 2024. It is now read-only.

Latest commit

 

History

History
43 lines (31 loc) · 869 Bytes

manual_install.md

File metadata and controls

43 lines (31 loc) · 869 Bytes

Manual install guide

Edit android/settings.gradle:

// ...

include ':react-native-android-tablayout'
project(':react-native-android-tablayout').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-android-tablayout/android')

Edit android/app/build.gradle:

// ...

dependencies {
  // ...
  compile project(':react-native-android-tablayout')
}

Register module in MainActivity.java for React-Native 0.19+:

// ...

import com.xebia.reactnative.TabLayoutPackage;    // <--- import

public class MainActivity extends ReactActivity {
    // ...
    
    @Override
    protected List<ReactPackage> getPackages() {
        return Arrays.<ReactPackage>asList(
            new MainReactPackage(),
            new TabLayoutPackage()                // <--- add package
        );
    }
    
    // ...
}