运行应用程序时,哪个文件首先在android studio中加载

时间:2016-07-23 12:01:11

标签: android android-studio android-manifest build.gradle

我有一个愚蠢的混乱问题,在eclipse中,Manifest文件加载时首先运行android应用程序。

但是在android studio项目中哪个文件首先加载,

$.each( mockFile, function( index, value ){
        //variables accessing array keys
        var mockThumb = mockFile['thumb'];
        var mockID = mockFile['serverId'];
        var mockTitle = mockFile['post_title'];
        var mockDesc = mockFile['post_desc'];
        //initiate dropzone
        myDropzone.options.addedfile.call(myDropzone, mockFile);
        myDropzone.options.thumbnail.call(myDropzone, mockFile, mockThumb  );
        //Other stuff
        jQuery( "#itemtitle" ).prop( "id","itemtitle-"+mockID);
        jQuery( "#itemtitle-"+mockID ).prop( "value", mockTitle);
        jQuery( "#itemdescription" ).prop( "id","itemdescription-"+mockID );
        jQuery( "#itemdescription-"+mockID ).prop( "value", mockDesc );
        jQuery( "#updateinformations" ).prop( "id","updateinformations-"+mockID );
        change_ids(mockID);
        console.log(mockFile);
    });

上面哪一个叫第一个?

因为build.gradle文件也包含,

        - build.gradle  file  or

        - Manifest file ?
谢谢。

2 个答案:

答案 0 :(得分:0)

这正是Android正式对此所说的: https://developer.android.com/studio/run/index.html

还有一些进一步阅读:

“介绍Gradle和Manifest” https://commonsware.com/Android/previews/introducing-gradle-and-the-manifest

答案 1 :(得分:0)

gradle用于编译和索引应用程序文件,而manifest是运行应用程序时加载的文件,android系统查看清单文件以检查应用程序需要的硬件要求