build

plugins {
   id 'com.android.application'
}

android {
   compileSdk 33

   defaultConfig {
       applicationId "com.example.bigovideoshaka"
       minSdk 21
       targetSdk 33
       versionCode 1
       versionName "1.0"

       // Xposed için gereklidir:
       multiDexEnabled true
   }

   buildTypes {
       release {
           minifyEnabled false
           proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
       }
   }

   // Xposed modüllerinde genelde bu yapılır:
   packagingOptions {
       exclude 'META-INF/DEPENDENCIES'
   }

   buildFeatures {
       buildConfig false
   }
}

dependencies {
   compileOnly 'de.robv.android.xposed:api:82'
}