-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1117 from embrace-io/move-span-arch
Move span arch classes over
- Loading branch information
Showing
28 changed files
with
182 additions
and
256 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
23 changes: 23 additions & 0 deletions
23
...e-android-api/src/main/kotlin/io/embrace/android/embracesdk/annotation/StartupActivity.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
package io.embrace.android.embracesdk.annotation | ||
|
||
import java.lang.annotation.Inherited | ||
|
||
/** | ||
* `@Documented` means that the annotation indicates that elements using this annotation should be documented by JavaDoc. | ||
* | ||
* | ||
* `@Target` specifies where we can use the annotation. | ||
* If you do not define any Target type that means annotation can be applied to any element. | ||
* | ||
* | ||
* `@Inherited` signals that a custom annotation used in a class should be inherited by all of its sub classes. | ||
* | ||
* | ||
* `@Retention` indicates how long annotations with the annotated type are to be retained. | ||
* RetentionPolicy.RUNTIME means the annotation should be available at runtime, for inspection via java reflection. | ||
*/ | ||
@MustBeDocumented | ||
@Target(AnnotationTarget.CLASS) | ||
@Inherited | ||
@Retention(AnnotationRetention.RUNTIME) | ||
public annotation class StartupActivity |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 0 additions & 27 deletions
27
...e-android-sdk/src/main/java/io/embrace/android/embracesdk/annotation/StartupActivity.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.