Skip to content

Commit

Permalink
run ok agp-8.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
REBOOTERS committed May 9, 2024
1 parent 08e127a commit 6e24231
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 26 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ abstract class BaseListFragment<T> : Fragment() {
mRecyclerView = view.findViewById(R.id.recyclerview)
mRecyclerView.layoutManager = getCustomLayoutManager()
mRecyclerView.adapter = getCustomAdapter()
mRecyclerView.addRecyclerListener { holder ->
mRecyclerView.setRecyclerListener { holder ->
Log.e("recyclerview", "itemViewType " + holder.itemViewType.toString())
Log.e("recyclerview", "itemId " + holder.itemId.toString())
Log.e("recyclerview", "adapterPosition " + holder.adapterPosition.toString())
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.

plugins {
id 'com.android.application' version '8.3.0' apply false
id 'com.android.library' version '8.3.0' apply false
id 'com.android.application' version '8.4.0' apply false
id 'com.android.library' version '8.4.0' apply false
id 'org.jetbrains.kotlin.android' version '1.9.22' apply false
id 'com.google.devtools.ksp' version '1.9.10-1.0.13' apply false
}
Expand Down
23 changes: 2 additions & 21 deletions buildSrc/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,7 @@ repositories {
maven { url 'https://jitpack.io' }
}

// 进行上传任务的命令:./gradlew -p plugin/ clean build uploadArchives
//uploadArchives {
// repositories.mavenDeployer {
// repository(url: uri('../repo')) //仓库的路径,此处是项目根目录下的 repo 的文件夹
// pom.groupId = 'com.engineer.plugin' //groupId ,自行定义,一般是包名
// pom.artifactId = 'phoenix' //artifactId ,自行定义
// pom.version = '1.0.7' //version 版本号
// }
//}


buildscript {
ext.kotlin_version = '1.9.22'
Expand All @@ -43,15 +35,4 @@ buildscript {
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}

//compileKotlin {
// kotlinOptions {
// jvmTarget = "17"
// }
//}
//compileTestKotlin {
// kotlinOptions {
// jvmTarget = "17"
// }
//}
}
10 changes: 8 additions & 2 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,11 @@ dependencyResolutionManagement {
}
}
}
include ':app', ':imitate', ':subs:skeleton', ':subs:dataview', ':subs:gif-revert', ':subs:game',
':subs:cpp_native',':subs:ai'
include ':app',
':imitate',
':subs:skeleton',
':subs:dataview',
':subs:gif-revert',
':subs:game',
':subs:cpp_native',
':subs:ai'

0 comments on commit 6e24231

Please sign in to comment.