首页 > 移动平台 > 详细

Android studio导入eclipse 项目

时间:2021-03-07 22:04:01      阅读:36      评论:0      收藏:0      [点我收藏+]

Android studio导入eclipse 项目

方法如下(21/3/7)这里前提是已有Android Studio项目可以运行

1,Import Project

技术分享图片
技术分享图片

2,在下面两个文件编辑(根据已有Android Studio项目对应文件编辑)

技术分享图片


我的Android Studio项目对应文件

plugins {
    id ‘com.android.application‘
}

android {
    compileSdkVersion 30
    buildToolsVersion "30.0.3"

    defaultConfig {
        applicationId "com.example.viewmodeltest"
        minSdkVersion 16
        targetSdkVersion 30
        versionCode 1
        versionName "1.0"

        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile(‘proguard-android-optimize.txt‘), ‘proguard-rules.pro‘
        }
    }
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
}

dependencies {

    implementation ‘androidx.appcompat:appcompat:1.1.0‘
    implementation ‘com.google.android.material:material:1.1.0‘
    implementation ‘androidx.constraintlayout:constraintlayout:1.1.3‘
    testImplementation ‘junit:junit:4.+‘
    androidTestImplementation ‘androidx.test.ext:junit:1.1.1‘
    androidTestImplementation ‘androidx.test.espresso:espresso-core:3.2.0‘
}

更改后的Eclipse文件

apply plugin: ‘com.android.application‘

android {
    //compileSdkVersion 17
    compileSdkVersion 30
    buildToolsVersion "30.0.3"

    defaultConfig {
        applicationId "sziit.lihz.ch01_1"
        //minSdkVersion 17
        //targetSdkVersion 17
        minSdkVersion 16
        targetSdkVersion 30
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile(‘proguard-android.txt‘), ‘proguard-rules.txt‘
        }
    }
}
//dependencies {
//    //noinspection GradleCompatible
//    implementation  ‘com.android.support:support-v4:‘
//}

dependencies {
    implementation ‘androidx.appcompat:appcompat:1.1.0‘
    implementation ‘com.google.android.material:material:1.1.0‘
    implementation ‘androidx.constraintlayout:constraintlayout:1.1.3‘
    androidTestImplementation ‘androidx.test.ext:junit:1.1.1‘
    androidTestImplementation ‘androidx.test.espresso:espresso-core:3.2.0‘
}

技术分享图片


更改Main文件

技术分享图片


最后调整注释乱码问题

技术分享图片

Android studio导入eclipse 项目

原文:https://www.cnblogs.com/Poppings/p/14495633.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!