When I clear the app data it doesn't work anymore

后端 未结 1 812
迷失自我
迷失自我 2021-01-20 11:51

I am doing an app using xamarin forms, I tested it on my celphone, then the apk is there. But when I Clear the data on android, my app doesn\'t open anymore... Did someone s

1条回答
  •  [愿得一人]
    2021-01-20 12:32

    Yes, that is normal for Xamarin.Android apps built in debug mode.

    If you Clear Data you are removing directories/files that are used for debugging:

    Before clearing data:

    .:
    drwxrwx--x   2 u0_a93 u0_a93 4096 2017-09-11 21:15 cache
    drwxrwx--x   2 u0_a93 u0_a93 4096 2017-09-11 21:15 code_cache
    drwxrwx--x   5 u0_a93 u0_a93 4096 2017-09-11 21:24 files
    lrwxrwxrwx   1 root root     60 2017-09-11 21:15 lib -> /data/app/com.sushihangover.GeneticCancerDNAMapper-1/lib/x86
        ./cache:
        ./code_cache:
        ./files:
            drwxrwxrwx 3 u0_a93 u0_a93 4096 2017-09-11 21:24 .__override__
            drwxr-xr-x 2 u0_a93 u0_a93 4096 2017-09-11 21:24 .config
            drwxr-xr-x 3 u0_a93 u0_a93 4096 2017-09-11 21:24 .local
            ./files/.__override__:
                drwxrwxrwx 2 u0_a93 u0_a93 4096 2017-09-11 21:24 links
            ./files/.__override__/links:
                lrwxrwxrwx 1 u0_a93 u0_a93   70 2017-09-11 21:24 libmonosgen-2.0.so -> /data/app/Mono.Android.DebugRuntime-1/lib/x86/libmonosgen-32bit-2.0.so
            ./files/.config:
            ./files/.local:
                drwxr-xr-x 2 u0_a93 u0_a93 4096 2017-09-11 21:24 share
                ./files/.local/share:
    

    After clearing data:

    .:
    lrwxrwxrwx   1 root root     60 2017-09-11 21:25 lib -> /data/app/com.sushihangover.GeneticCancerDNAMapper-1/lib/x86
    

    This data is not needed for release builds and the Application.DataDir is not used by Xamarin's runtime in release builds.

    0 讨论(0)
提交回复
热议问题