I don’t know where I can file an issue about this ...
# announcements
g
I don’t know where I can file an issue about this but I had verified that there is an
error in the "Kotlin (Mobile Android/iOS)" template
in IntelliJ to create a new project. The android
buid.gradle
is not correct configured since it is prepared to copy a
app.framework
but the build process is generating a
main.framework
. Also, the references in the
iosApp
, specially in the
project.pbxproj
are wrong, pointing the the
app.framework
. I tried several variations trying to change the
main.framework
to the
app.framework
but it wasn’t working. What worked was the opposite, change the references from
app.framework
to
main.framework
. I think this worked because the module exported is
main
but not
app
. So I needed to fix the imports in the project too. Ufa! I had a hard time trying to put this to work, since this was my first project using android and ios.
c
g
Thanks I’ve opened a issue there