视频号xposed插件
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
1.4 KiB

6 months ago
  1. plugins {
  2. id 'com.android.application'
  3. }
  4. android {
  5. compileSdk 31
  6. defaultConfig {
  7. applicationId "com.example.wechatvideo"
  8. minSdk 24
  9. targetSdk 31
  10. versionCode 1
  11. versionName "1.0"
  12. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  13. }
  14. buildTypes {
  15. release {
  16. minifyEnabled false
  17. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  18. }
  19. }
  20. compileOptions {
  21. sourceCompatibility JavaVersion.VERSION_1_8
  22. targetCompatibility JavaVersion.VERSION_1_8
  23. }
  24. repositories {
  25. maven { url "https://nexus.iinti.cn/repository/maven-public/" }
  26. }
  27. }
  28. dependencies {
  29. implementation "com.alibaba:fastjson:1.2.78" // 引入原始的fastjson 虽然说sekiro也有
  30. implementation 'com.google.guava:guava:30.1.1-jre'
  31. implementation('cn.iinti.sekiro3.business:sekiro-business-api:1.1')
  32. compileOnly 'de.robv.android.xposed:api:82'
  33. compileOnly 'de.robv.android.xposed:api:82:sources'
  34. implementation 'androidx.appcompat:appcompat:1.3.0-alpha02'
  35. implementation 'com.google.android.material:material:1.1.0'
  36. testImplementation 'junit:junit:4.13.2'
  37. androidTestImplementation 'androidx.test.ext:junit:1.1.0'
  38. androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
  39. }