Skip to content
This repository has been archived by the owner on Dec 3, 2024. It is now read-only.

Commit

Permalink
1.0 RC1 - First Public Release
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Mostovyi committed May 26, 2020
1 parent 0cf14e0 commit 5c2486c
Show file tree
Hide file tree
Showing 6 changed files with 43 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Androscope supports Android applications with minimum API level 16.
Add Androscope dependency to your Gradle script:

```
debugImplementation (COMING SOON)
debugImplementation 'nl.ngti:androscope:1.0-RC1'
```

Install your application and you will see the entry named **Androscope** in launcher. Run it to launch the web server and then you can start using Androscope in a web browser.
Expand Down
11 changes: 7 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,24 @@ buildscript {
repositories {
google()
jcenter()

}
dependencies {
classpath 'com.android.tools.build:gradle:3.6.3'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" }
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.dokka:dokka-gradle-plugin:0.10.1"
classpath 'com.vanniktech:gradle-maven-publish-plugin:0.11.1'
}
}

allprojects {
repositories {
google()
jcenter()

}
}

Expand Down
14 changes: 14 additions & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,18 @@ org.gradle.jvmargs=-Xmx1536m
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true

GROUP=nl.ngti
VERSION_NAME=1.0-RC1

POM_URL=https://github.com/ngti/androscope
POM_SCM_URL=https://github.com/ngti/androscope
POM_SCM_CONNECTION=scm:git:[email protected]:ngti/androscope.git
POM_SCM_DEV_CONNECTION=scm:git:[email protected]:ngti/androscope.git

POM_LICENCE_NAME=MIT License
POM_LICENCE_URL=https://github.com/ngti/androscope/blob/master/LICENSE
POM_LICENCE_DIST=repo

POM_DEVELOPER_ID=NGTI
POM_DEVELOPER_NAME=NGT International BV
POM_DEVELOPER_URL=https://ngti.nl
11 changes: 10 additions & 1 deletion lib-androscope/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ android {
kotlinOptions {
jvmTarget = JavaVersion.VERSION_1_8
}

}


dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'androidx.appcompat:appcompat:1.1.0'
Expand All @@ -45,3 +45,12 @@ dependencies {
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
}

apply plugin: 'org.jetbrains.dokka'

dokka {
outputFormat = 'html'
outputDirectory = "$buildDir/javadoc"
}

apply plugin: "com.vanniktech.maven.publish"
5 changes: 5 additions & 0 deletions lib-androscope/gradle.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
POM_ARTIFACT_ID=androscope
POM_NAME=Androscope
POM_DESCRIPTION=Androscope is a debugging tool for Android developers that allows to see application internals using a convenient web interface.
POM_INCEPTION_YEAR=2018
POM_PACKAGING=aar
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ import androidx.lifecycle.Observer
import nl.ngti.androscope.service.AndroscopeService
import nl.ngti.androscope.service.AndroscopeService.LocalBinder

/**
* Starts Androscope (if it was not started yet) and shows its status.
*
* You can configure Androscope in manifest or resources,
* see [https://github.com/ngti/androscope#recipes].
*/
class AndroscopeActivity : FragmentActivity(R.layout.activity_androscope), ServiceConnection, View.OnClickListener {

private lateinit var infoView: TextView
Expand Down

0 comments on commit 5c2486c

Please sign in to comment.