Skip to content

Commit

Permalink
Temporary fix to avoid a dead QField on iOS (#3553)
Browse files Browse the repository at this point in the history
Co-authored-by: Mathieu Pellerin <nirvn.asia@gmail.com>
  • Loading branch information
mbernasocchi and nirvn committed Nov 1, 2022
1 parent c023231 commit 57ac821
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/core/qgismobileapp.cpp
Expand Up @@ -270,6 +270,7 @@ QgisMobileapp::QgisMobileapp( QgsApplication *app, QObject *parent )

if ( !dataDirs.isEmpty() )
{
#ifndef Q_OS_IOS
// add extra proj search path to allow copying of transformation grid files
QString path( proj_info().searchpath );
QStringList paths;
Expand Down Expand Up @@ -307,6 +308,7 @@ QgisMobileapp::QgisMobileapp( QgsApplication *app, QObject *parent )
free( newPaths[i] );
}
delete[] newPaths;
#endif

#ifdef Q_OS_ANDROID
for ( const QString &dataDir : dataDirs )
Expand Down

1 comment on commit 57ac821

@qfield-fairy
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🎉 Ta-daaa, freshly created APKs are available:

Other architectures: arm-android, x64-android, x86

Please sign in to comment.