Hi All,
I am developing an app, which i have to access the .mmpk [map package file]. MMPK file will be copied in the SD card root.
Query 1:
What will be the path to set it in the QML Code?
Query 2:
If the .mmpk file is added in the /Resources [Resources/Resources.qrc/resources [where the AppIcon is present]], So the .mmpk will be bundles and go along with the .apk file.
Is it the right way? if it so, How to set the path?
Tried:
property real scaleFactor: System.displayScaleFactor
//Input Path
//property string strMmpkdataPath: System.userHomePath + "/ArcGIS/Runtime/Data/mmpk/" //System path
//property string strMmpkdataPath: ":/Resources/CARCommune.mmpk" //Mobile SD Card Path
//property string strMmpkdataPath: "../Resources/CARCommune.mmpk" //Mobile SD Card Path
property string strMmpkdataPath: "qrc:/Resources/CARCommune.mmpk" ////Mobile SD Card URL
//System.userHomePath = C:\Users\mmanohar
//OutPut Path
property string runtimePath: System.userHomeFolder.filePath("/ArcGIS/Runtime") //mobilePath
property string dataPath: runtimePath + "/Data"
property string InputMMPK: "CARCommune.mmpk"
Bookmarks