I'm trying to integrate react-native into an existing Android application, but keep running into the following error:
> Could not find com.android.support:appcompat-v7:23.0.1.
It seems like react-native needs sdkBuildTools version 23.0.1 and appcompat-v7 version 23.0.1.
However, the application I'm working on depends on sdkBuildTools version 24 and also appcompat-v7 version 23.2. Downgrading these dependencies is not an option.
Does this mean I can't integrate react-native into the app without rebuilding react-native from source with bumped up dependencies?