Java文件转为kotlin文件
程序员文章站
2022-07-14 21:55:12
...
將Java文件转为kotlin文件:
转换后:
class MainActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
}
}
項目的build.gradle
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
//添加
ext.kotlin_version = '1.3.21'
repositories {
google()
mavenCentral() //添加
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.4.0'
//添加
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
mavenCentral() //添加
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
app module的build.gradle
apply plugin: 'com.android.application'
//添加
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-android'
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.example.myapplication"
minSdkVersion 15
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
//添加
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
}
上一篇: RGB Bayer转为RGB
下一篇: .py文件转为.pyd文件