Skip to content

Commit

Permalink
[LOCAL] Fix broken Android tests for 0.72 (#38926)
Browse files Browse the repository at this point in the history
  • Loading branch information
cortinico authored and Luna Wei committed Aug 10, 2023
1 parent 40ea8ff commit 2f6c200
Showing 1 changed file with 24 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

package com.facebook.testutils.shadows

import android.content.Context
import com.facebook.soloader.SoLoader
import kotlin.jvm.JvmStatic
import org.robolectric.annotation.Implementation
import org.robolectric.annotation.Implements

@Suppress("UNUSED_PARAMETER")
@Implements(SoLoader::class)
class ShadowSoLoader {
companion object {
@JvmStatic @Implementation fun init(context: Context?, flags: Int) {}

@JvmStatic @Implementation fun loadLibrary(shortName: String?): Boolean = true
}
}

0 comments on commit 2f6c200

Please sign in to comment.