I am trying to make a golang package that can be included in an Android app.
So I have
So
Save your file in lib folder then import it by using it
compile( name : 'Name of AAR' , ext : 'aar' )
and
allprojects {
repositories {
jcenter()
mavenCentral()
maven { url "https://jitpack.io" }
flatDir {
dirs 'libs'
}
}
}
Check it i hope you get solution