美文网首页
Project_Ignore 基本忽略文件

Project_Ignore 基本忽略文件

作者: RoboyCore | 来源:发表于2016-11-08 19:22 被阅读52次

    C:\software\androidstudio\as\plugins\android\lib\templates\gradle-projects\NewAndroidProject\root

    Intellij IDEA

    *.iml
    .gradle
    /local.properties
    /.idea/workspace.xml
    /.idea/libraries
    .DS_Store
    /build
    /captures
    .externalNativeBuild
    .idea/
    *ipr
    *iws
    out/
    

    Gradle build folder

    build/
    .gradle/
    

    Android 特有

    local.properties
    bin/
    gen/
    

    JNI compile files

    *.o
    *.o.d
    

    OS autogen folder information

    .DS_Store mac里头

    Thumbs.db
    

    Temp files

    *.bak
    *.tmp
    *.temp
    *.swp
    *.*~
    ~*.*
    

    Eclipse project files

    .classpath
    .settings/
    .project
    

    Android 2.2 C/C++ compile

    .externalNativeBuild/

    相关文章

      网友评论

          本文标题:Project_Ignore 基本忽略文件

          本文链接:https://www.haomeiwen.com/subject/nxfzuttx.html