我在一個公開發布的android庫上工作。而且,對於對外發布,我需要用下面的選項運行的ProGuard: -keep public class com.example.package_one.* {
public protected *;
}
-keep public class com.example.package_one.subpackage_one.* {
pub
我想分發SDK給開發者,但我不想分享我的代碼。我用AAR文件共享我的SDK(Android Archive Library (aar) vs standard jar)。但其他人可能會查看我的課程文件。如何避免這種情況?請幫助我們。 說明: 我已閱讀此「Android - Need a way to create the library(.aar file) without source code