Android data is sent but doesn't appear on Rollbar
we have a Kotlin Android app, we want to integrate rollbar but so far it hasn't worked, our gradle fie:
android {
compileSdkVersion 26
defaultConfig {
minSdkVersion 21
targetSdkVersion 26
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
//noinspection GradleCompatible
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation 'com.android.support:design:26.1.0'
implementation 'com.basecamp:turbolinks:1.0.8'
implementation 'com.rollbar:rollbar-java:1.4.0'
}
Lines from Main Activity:
import com.rollbar.notifier.Rollbar
import com.rollbar.notifier.config.ConfigBuilder
class MainActivity : AppCompatActivity(), NavigationView.OnNavigationItemSelectedListener {
lateinit private var turbolinksHelper: TurbolinksHelper
val config = ConfigBuilder.withAccessToken("f9178dca7b5d450b986b36ddc8b2159a")
.language("scala")
.codeVersion("1.0.0")
.environment("production")
.enabled(true)
.build()
val rollbar = Rollbar.init(config)
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
rollbar.info("This is a test message")
rollbar.log(Error("this is an error"), "another thing to exist")
Using Charles I can see that the app is communicating with rollbar service, but nothing appears on the projects dashboard
Thanks in advance
android kotlin rollbar
add a comment |
we have a Kotlin Android app, we want to integrate rollbar but so far it hasn't worked, our gradle fie:
android {
compileSdkVersion 26
defaultConfig {
minSdkVersion 21
targetSdkVersion 26
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
//noinspection GradleCompatible
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation 'com.android.support:design:26.1.0'
implementation 'com.basecamp:turbolinks:1.0.8'
implementation 'com.rollbar:rollbar-java:1.4.0'
}
Lines from Main Activity:
import com.rollbar.notifier.Rollbar
import com.rollbar.notifier.config.ConfigBuilder
class MainActivity : AppCompatActivity(), NavigationView.OnNavigationItemSelectedListener {
lateinit private var turbolinksHelper: TurbolinksHelper
val config = ConfigBuilder.withAccessToken("f9178dca7b5d450b986b36ddc8b2159a")
.language("scala")
.codeVersion("1.0.0")
.environment("production")
.enabled(true)
.build()
val rollbar = Rollbar.init(config)
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
rollbar.info("This is a test message")
rollbar.log(Error("this is an error"), "another thing to exist")
Using Charles I can see that the app is communicating with rollbar service, but nothing appears on the projects dashboard
Thanks in advance
android kotlin rollbar
add a comment |
we have a Kotlin Android app, we want to integrate rollbar but so far it hasn't worked, our gradle fie:
android {
compileSdkVersion 26
defaultConfig {
minSdkVersion 21
targetSdkVersion 26
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
//noinspection GradleCompatible
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation 'com.android.support:design:26.1.0'
implementation 'com.basecamp:turbolinks:1.0.8'
implementation 'com.rollbar:rollbar-java:1.4.0'
}
Lines from Main Activity:
import com.rollbar.notifier.Rollbar
import com.rollbar.notifier.config.ConfigBuilder
class MainActivity : AppCompatActivity(), NavigationView.OnNavigationItemSelectedListener {
lateinit private var turbolinksHelper: TurbolinksHelper
val config = ConfigBuilder.withAccessToken("f9178dca7b5d450b986b36ddc8b2159a")
.language("scala")
.codeVersion("1.0.0")
.environment("production")
.enabled(true)
.build()
val rollbar = Rollbar.init(config)
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
rollbar.info("This is a test message")
rollbar.log(Error("this is an error"), "another thing to exist")
Using Charles I can see that the app is communicating with rollbar service, but nothing appears on the projects dashboard
Thanks in advance
android kotlin rollbar
we have a Kotlin Android app, we want to integrate rollbar but so far it hasn't worked, our gradle fie:
android {
compileSdkVersion 26
defaultConfig {
minSdkVersion 21
targetSdkVersion 26
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
//noinspection GradleCompatible
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation 'com.android.support:design:26.1.0'
implementation 'com.basecamp:turbolinks:1.0.8'
implementation 'com.rollbar:rollbar-java:1.4.0'
}
Lines from Main Activity:
import com.rollbar.notifier.Rollbar
import com.rollbar.notifier.config.ConfigBuilder
class MainActivity : AppCompatActivity(), NavigationView.OnNavigationItemSelectedListener {
lateinit private var turbolinksHelper: TurbolinksHelper
val config = ConfigBuilder.withAccessToken("f9178dca7b5d450b986b36ddc8b2159a")
.language("scala")
.codeVersion("1.0.0")
.environment("production")
.enabled(true)
.build()
val rollbar = Rollbar.init(config)
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
rollbar.info("This is a test message")
rollbar.log(Error("this is an error"), "another thing to exist")
Using Charles I can see that the app is communicating with rollbar service, but nothing appears on the projects dashboard
Thanks in advance
android kotlin rollbar
android kotlin rollbar
edited Jan 18 at 12:58
Zoe
11.4k74078
11.4k74078
asked Jan 18 at 12:30
Alberto RojasAlberto Rojas
62
62
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
This is the same issue as https://github.com/rollbar/rollbar-java/issues/172. The maintainers of rollbar-java are troubleshooting via that Github issue.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54254074%2fandroid-data-is-sent-but-doesnt-appear-on-rollbar%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
This is the same issue as https://github.com/rollbar/rollbar-java/issues/172. The maintainers of rollbar-java are troubleshooting via that Github issue.
add a comment |
This is the same issue as https://github.com/rollbar/rollbar-java/issues/172. The maintainers of rollbar-java are troubleshooting via that Github issue.
add a comment |
This is the same issue as https://github.com/rollbar/rollbar-java/issues/172. The maintainers of rollbar-java are troubleshooting via that Github issue.
This is the same issue as https://github.com/rollbar/rollbar-java/issues/172. The maintainers of rollbar-java are troubleshooting via that Github issue.
answered Jan 18 at 18:19
Jesse GibbsJesse Gibbs
1507
1507
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54254074%2fandroid-data-is-sent-but-doesnt-appear-on-rollbar%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown