azesmway / react-native-unity-play

Play an unity view in react native
MIT License
40 stars 16 forks source link

build.gradle google() repository missing #10

Open Lbienko opened 2 years ago

Lbienko commented 2 years ago

When istalling through npm. new version is not pushed to npm version 0.1.6 it is now in build:
buildscript { repositories { jcenter() }

dependencies {
    classpath 'com.android.tools.build:gradle:4.1.3'
}

} it should be:

buildscript { repositories { jcenter() google() }

dependencies {
    classpath 'com.android.tools.build:gradle:4.1.3'
}

}