Skip to content

Commit

Permalink
2025.01.14.1060
Browse files Browse the repository at this point in the history
  • Loading branch information
guanlisheng committed Jan 14, 2025
1 parent 1c1a427 commit 72ff434
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 2 deletions.
15 changes: 14 additions & 1 deletion MMEX_Icon_Font/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@
* limitations under the License.
*/

apply plugin: 'com.android.library'
plugins {
id 'com.android.library'
id 'org.jetbrains.kotlin.android'
}

android {
namespace "com.mikepenz.mmex_icon_font_typeface_library"
Expand All @@ -28,6 +31,16 @@ android {

consumerProguardFiles 'consumer-proguard-rules.pro'
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
}

kotlinOptions {
jvmTarget = "11"
}

buildTypes {
debug {

Expand Down
15 changes: 14 additions & 1 deletion money/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

apply plugin: 'com.android.library'
plugins {
id 'com.android.library'
id 'org.jetbrains.kotlin.android'
}

android {
namespace "info.javaperformance.money"
Expand All @@ -25,6 +28,16 @@ android {
minSdkVersion rootProject.ext.minSdkVersion
targetSdk rootProject.ext.targetSdk
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
}

kotlinOptions {
jvmTarget = "11"
}

buildTypes {
debug {
minifyEnabled false
Expand Down

0 comments on commit 72ff434

Please sign in to comment.