Files
flipper/android/no-op/build.gradle
Pascal Hartig c3013ae57b Rename no-op package namespace (#4754)
Summary:
[android] Rename no-op package namespace
Shouldn't affect anything but otherwise you get a warning:

```
[:android] /Users/realpassy/Projects/java/flipper/android/build/intermediates/merged_manifest/debug/AndroidManifest.xml Warning:
        Namespace 'com.facebook.flipper' used in: :android, com.facebook.flipper:flipper:0.182.0.
```

Pull Request resolved: https://github.com/facebook/flipper/pull/4754

Test Plan:
CI
Build sample

 ---
Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/flipper/pull/4754).
* https://github.com/facebook/flipper/issues/4759
* https://github.com/facebook/flipper/issues/4758
* https://github.com/facebook/flipper/issues/4757
* https://github.com/facebook/flipper/issues/4756
* https://github.com/facebook/flipper/issues/4755
* __->__ https://github.com/facebook/flipper/issues/4754
* https://github.com/facebook/flipper/issues/4753
* https://github.com/facebook/flipper/issues/4752
* https://github.com/facebook/flipper/issues/4751

Reviewed By: ivanmisuno

Differential Revision: D46068943

Pulled By: passy

fbshipit-source-id: ac806cd1c8444875fe965c95095ba886592e72d0
2023-05-24 04:19:58 -07:00

34 lines
771 B
Groovy

/*
* 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.
*/
apply plugin: 'com.android.library'
android {
namespace 'com.facebook.flipper.noop'
compileSdkVersion rootProject.compileSdkVersion
buildToolsVersion rootProject.buildToolsVersion
defaultConfig {
minSdkVersion rootProject.minSdkVersion
targetSdkVersion rootProject.targetSdkVersion
}
sourceSets {
test {
java {
exclude 'com/facebook/flipper/plugins/facebook/**'
}
}
}
dependencies {
implementation deps.jsr305
}
}
apply plugin: 'com.vanniktech.maven.publish'