小编mic*_*toh的帖子

Apk Metainfo警告

当我尝试验证时,如果.apk(andriod应用程序)已签名,我会看到以下错误.

我不确定这个错误究竟意味着什么?

这会引起任何安全问题吗?

root@kali:~/Downloads# apksigner verify --verbose magni_v1.2.8_apkpure.com.apk 
Verifies
Verified using v1 scheme (JAR signing): true
Verified using v2 scheme (APK Signature Scheme v2): true
Number of signers: 1
WARNING: META-INF/android.arch.core_runtime.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/android.arch.lifecycle_livedata-core.version not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.
WARNING: META-INF/android.arch.lifecycle_runtime.version not …
Run Code Online (Sandbox Code Playgroud)

security android apk

9
推荐指数
1
解决办法
1808
查看次数

将字符串添加到ArrayList但仍然看到大小为0

public class Thirdfragment extends Fragment {

    List names = new ArrayList();


    public Thirdfragment() {
        // Required empty public constructor
    }

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);    
    }

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
                             Bundle savedInstanceState) {

        ParseQuery<ParseObject> query = ParseQuery.getQuery("serviceop");    
        query.findInBackground(new FindCallback<ParseObject>() {
            public void done(List<ParseObject> objects, ParseException e) {
                if (e == null) {

                    if (objects.size() > 0) {    
                        for (ParseObject object : objects) {    
                            String Currentdatatype = object.getString("name");

                       names.add("s");    
                       Log.d("added",Currentdatatype);    
                        }
                    } else {    
                        Log.d("no data","left …
Run Code Online (Sandbox Code Playgroud)

java android

-3
推荐指数
1
解决办法
145
查看次数

标签 统计

android ×2

apk ×1

java ×1

security ×1