MCPcopy Index your code
hub / github.com/MichaelEvans/Aftermath

github.com/MichaelEvans/Aftermath @0.3.1

Chat with this repo
repository ↗ · DeepWiki ↗ · release 0.3.1 ↗ · + Follow
48 symbols 90 edges 9 files 2 documented · 4%
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

Aftermath

Build Status Android Arsenal

Aftermath handles the consequences of your startActivityForResult calls.

// Make some call to startActivityForResult
public void startPicker(View view) {
    Intent pickContactIntent = new Intent(Intent.ACTION_PICK, Uri.parse("content://contacts"));
    pickContactIntent.setType(ContactsContract.CommonDataKinds.Phone.CONTENT_TYPE);
    startActivityForResult(pickContactIntent, PICK_CONTACT_REQUEST);
}

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    Aftermath.onActivityResult(this, requestCode, resultCode, data);
    super.onActivityResult(requestCode, resultCode, data);
}

@OnActivityResult(PICK_CONTACT_REQUEST)
public void onContactPicked(int resultCode, Intent data) {
    // TODO: handle the result of your intent
}

Setup

buildscript {
    repositories {
        jcenter() // Also available in maven central
    }
    dependencies {
        classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
    }
}

apply plugin: 'com.neenbedankt.android-apt'

dependencies {
    apt 'org.michaelevans:aftermath-processor:0.3.1'
    compile 'org.michaelevans:aftermath:0.3.1'
}

License

Copyright 2015 Michael Evans

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

Extension points exported contracts — how you extend this code

IAftermathDelegate (Interface)
DO NOT USE. Exposed for generated classes' use. [1 implementers]
aftermath/src/main/java/org/michaelevans/aftermath/IAftermathDelegate.java

Core symbols most depended-on inside this repo

onActivityResult
called by 2
aftermath/src/main/java/org/michaelevans/aftermath/IAftermathDelegate.java
onRequestPermissionsResult
called by 2
aftermath/src/main/java/org/michaelevans/aftermath/IAftermathDelegate.java
findActivityForResultForClass
called by 2
aftermath/src/main/java/org/michaelevans/aftermath/Aftermath.java
newInstance
called by 2
aftermath-processor/src/main/java/org/michaelevans/aftermath/BindingClass.java
error
called by 2
aftermath-processor/src/main/java/org/michaelevans/aftermath/AftermathProcessor.java
onActivityResult
called by 1
aftermath/src/main/java/org/michaelevans/aftermath/Aftermath.java
onRequestPermissionResult
called by 1
aftermath/src/main/java/org/michaelevans/aftermath/Aftermath.java
checkPermission
called by 1
sample/src/main/java/org/michaelevans/aftermath.sample/MainActivity.java

Shape

Method 39
Class 8
Interface 1

Languages

Java100%

Modules by API surface

sample/src/main/java/org/michaelevans/aftermath.sample/MainActivity.java15 symbols
aftermath-processor/src/main/java/org/michaelevans/aftermath/BindingClass.java9 symbols
aftermath-processor/src/main/java/org/michaelevans/aftermath/AftermathProcessor.java9 symbols
sample/src/androidTest/java/org/michaelevans/aftermath/MainActivityTest.java6 symbols
aftermath/src/main/java/org/michaelevans/aftermath/Aftermath.java4 symbols
aftermath/src/main/java/org/michaelevans/aftermath/IAftermathDelegate.java3 symbols
aftermath-processor/src/test/java/org/michaelevans/aftermath/AftermathProcessorTest.java2 symbols

For agents

$ claude mcp add Aftermath \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact