From 9e705e2135f8ac6e782da7a1cb1b833f045089ee Mon Sep 17 00:00:00 2001 From: Anay Wadhera Date: Thu, 11 Jan 2024 02:52:56 +0000 Subject: [PATCH] Remove no-op proguard rule FUTURE_COPYBARA_INTEGRATE_REVIEW=https://github.com/google/nearby/pull/2240 from anayw2001:main 99c2e04f661d91bb80167ba0584d0148acbc6dea PiperOrigin-RevId: 597411223 --- sharing/android/example/app/build.gradle.kts | 2 +- .../android/example/app/proguard-rules.pro | 21 ------------------- 2 files changed, 1 insertion(+), 22 deletions(-) delete mode 100644 sharing/android/example/app/proguard-rules.pro diff --git a/sharing/android/example/app/build.gradle.kts b/sharing/android/example/app/build.gradle.kts index acbe5cc2..d1847213 100644 --- a/sharing/android/example/app/build.gradle.kts +++ b/sharing/android/example/app/build.gradle.kts @@ -23,7 +23,7 @@ android { buildTypes { release { isMinifyEnabled = false - proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro") + proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt")) } } compileOptions { diff --git a/sharing/android/example/app/proguard-rules.pro b/sharing/android/example/app/proguard-rules.pro deleted file mode 100644 index f1b42451..00000000 --- a/sharing/android/example/app/proguard-rules.pro +++ /dev/null @@ -1,21 +0,0 @@ -# Add project specific ProGuard rules here. -# You can control the set of applied configuration files using the -# proguardFiles setting in build.gradle. -# -# For more details, see -# http://developer.android.com/guide/developing/tools/proguard.html - -# If your project uses WebView with JS, uncomment the following -# and specify the fully qualified class name to the JavaScript interface -# class: -#-keepclassmembers class fqcn.of.javascript.interface.for.webview { -# public *; -#} - -# Uncomment this to preserve the line number information for -# debugging stack traces. -#-keepattributes SourceFile,LineNumberTable - -# If you keep the line number information, uncomment this to -# hide the original source file name. -#-renamesourcefileattribute SourceFile